注意:此页面搜索的是所有试题
在Java中,下列代码运行的结果是( ) public static void main(String[] args) { int a=1, b=2, c=3; if (a<0) if (b<0) c=10; else c=20; System.out.println(c); }
A、输出:10
B、输出:3
C、输出:20
D、编译报错

参考答案