关于java的作业问题
(1)编写程序名为:TestTypel.java(2)测试如下程序booleana=false;booleanb=true;booleanc=(a&&b)&&(!b);i...
(1)编写程序名为:TestTypel.java(2)测试如下程序boolean a=false;boolean b=true;boolean c=(a&&b)&&(!b);int result=c==false?1:2;这段程序执行完成后输出c与result的值。怎么写
展开
4个回答
2013-06-15
展开全部
public class TestTypel{
public static void main(String[] args){
boolean a=false;
boolean b=true;
boolean c=(a&&b)&&b;
int result=c==false?1:2;
System.out.println("c的值"+c);
System.out.println("result的值"+result);
}}希望对你有帮助
public static void main(String[] args){
boolean a=false;
boolean b=true;
boolean c=(a&&b)&&b;
int result=c==false?1:2;
System.out.println("c的值"+c);
System.out.println("result的值"+result);
}}希望对你有帮助
2013-06-15
展开全部
这是作业?首先可以确定 C一定是false 之后用三元运算判断c是否为false 当c为false时 将result =1 public class TestTypel {
public static void main(String []arg){
boolean a=false; boolean b=true; boolean c=(a&&b)&&(!b);
System.out.println(c); int result=c==false?1:2;
System.out.println(result); }最后输出结果为 false 1
}
public static void main(String []arg){
boolean a=false; boolean b=true; boolean c=(a&&b)&&(!b);
System.out.println(c); int result=c==false?1:2;
System.out.println(result); }最后输出结果为 false 1
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-15
展开全部
public class TestTypel{
public static void main(String args[]){
boolean a=false;
boolean b=true;
boolean c=(a&&b)&&(!b);
int result=c==false?1:2;
Sysout.out.print("c="+c+";result="+result); }
}
public static void main(String args[]){
boolean a=false;
boolean b=true;
boolean c=(a&&b)&&(!b);
int result=c==false?1:2;
Sysout.out.print("c="+c+";result="+result); }
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-15
展开全部
false,1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |