该程序的输出是什么?( )
class Upwork {
public static void main(String args[]) {
int g = 3;
System.out.print(++g * 8);
}
}25
24
32
33
++在前,先加1再运算
++在后,先运算再加1
++在后,先运算再加1
该程序的输出是什么?( )
class Upwork {
public static void main(String args[]) {
int g = 3;
System.out.print(++g * 8);
}
}25
24
32
33