首页上一页 1 下一页尾页 1 条记录 1/1页
运行结果显示
发表在Java图书答疑
2013-11-27
是否精华
是
否
版块置顶:
是
否
public class Calculation {
public static void main(String[] args) {
// TODO 自动生成的方法存根
int a = 2 ;
int b = 5 ;
boolean result = ((a>b)&&(a!=b));
boolean result2 = ((a>b)||(a!=b));
System.out.print(result);
System.out.print(result2);
}
}
结果显示为falsetrue
想要结果这样显示false
true
该怎么做呢
public static void main(String[] args) {
// TODO 自动生成的方法存根
int a = 2 ;
int b = 5 ;
boolean result = ((a>b)&&(a!=b));
boolean result2 = ((a>b)||(a!=b));
System.out.print(result);
System.out.print(result2);
}
}
结果显示为falsetrue
想要结果这样显示false
true
该怎么做呢