[填空题] 若有如下程序: public class Test public static void main (String[] args) int x=20; if (x>10) Syst
19 查阅
[填空题] 若有如下程序:
public class Test
public static void main (String[] args)
int x=20;
if (x>10) System.out.print(x-=5);
if (x>5) System.out.print(x--);
则程序运行后的输出结果是 【12】 。参考答案: