下列程序的运行结果是( )。
public class Test{
public static void main(String[]args){
int x=3,y=4,z=5;
if(x>3){
if(y
System.out.println("show one");
else
System.out.println("show two");
}
else{
if(z>4)
System.out.println("show three");
else
System.out.println("show four");
}
}
A. show one
B. show two
C. show three
D. show four
【答案】
【解析】
发表评论 取消回复