为了账号安全,请及时绑定邮箱和手机立即绑定

以下代码是关于java switch和if else问题,麻烦大佬帮忙看看~

以下代码是关于java switch和if else问题,麻烦大佬帮忙看看~

森栏 2022-01-07 18:07:01
import java.util.Scanner;public class guess{public static void main(String[] args){Scanner in=new Scanner(System.in);System.out.println("猜拳游戏:1是剪刀,2是石头,3是布");System.out.println("请出拳");int person=in.nextInt();int computer=(int)(Math.random()*3+1);String mark="拳头";String mark2="拳头";switch(person){case 1:mark="剪刀";break;case 2:mark="石头";break;case 3:mark="布";break;}switch(computer){case 1:mark2="剪刀";break;case 2:mark2="石头";break;case 3:mark2="布";break;}if(person>3){System.out.println("能不能好好玩");}else{if(person==computer){System.out.println("平局");}else if(person==(computer+1)%3+1){//(person==1&&computer==2||person==2&&computer==3||person==3&&computer==1)System.out.println("你出的是:"+mark+" "+"电脑出的是:"+mark2+"-_-你输了");}else{System.out.println("你出的是:"+mark+" "+"电脑出的是:"+mark2+"~—~你赢了");}}}}能不能将if(person>3){System.out.println("能不能好好玩");}else这句 加载到switch下的 案例case中用switch下 break跳出命令代替if_elseps:本人新手 自学java第3天 望高手能用简单的语法回答
查看完整描述

2 回答

?
森林海

TA贡献2011条经验 获得超2个赞

import java.util.Scanner;
public class guess{
public static void main(String[] args){
Scanner in=new Scanner(System.in);
System.out.println("猜拳游戏:1是剪刀,2是石头,3是布");
System.out.println("请出拳");
int person=in.nextInt();
int computer=(int)(Math.random()*3+1);
String mark="拳头";
String mark2="拳头";
switch(person){
case 1:
mark="剪刀";
break;
case 2:
mark="石头";
break;
case 3:
mark="布";
break;

default: //不是1、2、3 说明输入不对

System.out.println("能不能好好玩");  

return;//跳出方法体,后续都不执行

}


switch(computer){
case 1:
mark2="剪刀";
break;
case 2:
mark2="石头";
break;
case 3:
mark2="布";
break;

}
if(person>3){
System.out.println("能不能好好玩");

}else{
if(person==computer){
System.out.println("平局");
}else if(person==(computer+1)%3+1){
//(person==1&&computer==2||person==2&&computer==3||person==3&&computer==1)
System.out.println("你出的是:"+mark+" "+"电脑出的是:"+mark2+"-_-你输了");
}else{
System.out.println("你出的是:"+mark+" "+"电脑出的是:"+mark2+"~—~你赢了");
}}
}
}



查看完整回答
反对 回复 2022-01-10
?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

不能转换
switch 只支持char int boolean byte类型
不支持条件语句

查看完整回答
反对 回复 2022-01-10
  • 2 回答
  • 0 关注
  • 140 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信