分析以下程序中灰底色部分代码的错误,把修改后的对应代码填写在对应的下划线中(没有错误则直接填写原语句),使其能正确输出结果。public class Test01 {public static void main(String[] args) {float floatx, x=15; // ____(1)_______y=floatx + x ; // ____(2)_______int a=20;// ____(3)_______float s=a*10;// ____(4)_______System.out.println("y="+y+",s="+s); // ____(5)_______}}