public class Test2005{
public static void main(String args[]){
System.out.println((3>2) ? 4 : 5) ;
}
其运行结果是
A. ) 2
B. ) 3
C. ) 4
D. ) 5