有如下代码:int a = 1;int b = a++;int c = ++a;System.out.print(a + "," + b + "," + c);则在下面选项中,______是程序的输出结果。
A. 3,1,3
B. 2,1,3
C. 2,2,3
D. 3,2,2
分析以下程序中灰底色部分代码的错误,把修改后的对应代码填写在对应的下划线中(没有错误则直接填写原语句),使其能正确输出结果。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)_______}}