问题详情

答题翼 > 问答 > 求职面试 > 正文
目录: 标题| 题干| 答案| 搜索| 相关

以下程序的运行结果为( )public class IfTest{public static void main(String args[]){int x=3;


以下程序的运行结果为()

public class IfTest{

public static void main(String args[]){

int x=3;

int y=1;

if(x==y)

System.out.println("Not equal");

else

System.out.println("Equal");

}

}

A、Not equal

B、Equal

C、无输出

D、编译出错

请帮忙给出正确答案和分析,谢谢!

参考答案
您可能感兴趣的试题