注意:此页面搜索的是所有试题
下列代码段, n的值为( )时将打印字符串"first" 。
if(n>5){ System.out.println("first"); }
else if(n<=0){ System.out.println("second"); }
else { System.out.println("third"); }
A. 20 B. 5
C. -5 D. 0

参考答案