注意:此页面搜索的是所有试题
题目内容
(河南工业大学面向对象程序设计)
在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、编译报错
A、输出:10
B、输出:3
C、输出:20
D、编译报错
参考答案