题目内容
运行下面程序后,正确的输出结果是()。
public class Sun
{
public static void main(String args[ ])
{
int x=6;
if(x>6)
System.out.println("x>6");
else
if(x<8)
System.out.println("x<8");
else
if(x==6)
System.out.println("x=6");
}
}
查看答案
搜索结果不匹配?点我反馈