简单问题求助
本帖最后由 oooooook 于 2021-9-29 11:29 编辑import java.util.Scanner;
public class Main {
public static void main(String[] args) {
while (true) {
Scanner sz = new Scanner(System.in);
int jq = (int) (Math.random() * 3) + 1;
System.out.println(" --------------------------------\n" + "| 猜拳小游戏 |\n" + "| 0.游戏结束了 1.剪刀 2.石头 3.布 |\n" + " --------------------------------\n" + "请输入数字1-3进行猜拳");
int yh = sz.nextInt();
String yhS;
String jqS;
switch (yh) {
case 0:
System.out.println("游戏结束了");
return;
case 1:
yhS = "剪刀";
break;
case 2:
yhS = "石头";
break;
case 3:
yhS = "布";
break;
default:
System.out.println("您需要输入合法的数字,请按照游戏规则进行。");
continue;
}
switch (jq) {
case 1:
jqS = "剪刀";
break;
case 2:
jqS = "石头";
break;
case 3:
jqS = "布";
break;
}
if (yh == 1 && jq == 3 || yh == 2 && jq == 1 || yh == 3 && jq == 2) {
System.out.println("你出了" + yhS + "电脑出了" + jqS + "胜利");---------------------------------------------------------------------------------------------------------------------------(1)
} else if (yh == jq) {
System.out.println("你出了" + yhS + "电脑出了" + jqS + "平局");
} else {
System.out.print("你出了" + yhS + "电脑出了" + jqS + "失败");
}
}
}
}
横线(1)的电脑出了后边的jqS出错,出错提示为:Variable 'jqS' might not have been initialized,这个问题是什么原因应该如何解决为什么这样解决 出现错误的原因就是没有给jqS值赋初始值或者在后面没有赋值,你去使用它,可能会照成不可预期的错误
具体参考:https://droidyue.com/blog/2018/07/16/variable-localname-might-not-have-been-initialized/
import java.util.Scanner;
public class Test2 {
public static void main(String[] args) {
while (true) {
Scanner sz = new Scanner(System.in);
int jq = (int) (Math.random() * 3) + 1;
System.out.println(" --------------------------------\n" + "| 猜拳小游戏 |\n" + "| 0.游戏结束了 1.剪刀 2.石头 3.布 |\n" + " --------------------------------\n" + "请输入数字1-3进行猜拳");
int yh = sz.nextInt();
String yhS;
String jqS;
// String jqS = ""; 要么在这里赋一个空字符串
switch (yh) {
case 0:
System.out.println("游戏结束了");
return;
case 1:
yhS = "剪刀";
break;
case 2:
yhS = "石头";
break;
case 3:
yhS = "布";
break;
default:
System.out.println("您需要输入合法的数字,请按照游戏规则进行。");
continue;
}
switch (jq) {
case 1:
jqS = "剪刀";
break;
case 2:
jqS = "石头";
break;
case 3:
jqS = "布";
break;
/*default: // 要么在这里加一个default
jqS = "";
break;*/
}
if (yh == 1 && jq == 3 || yh == 2 && jq == 1 || yh == 3 && jq == 2) {
System.out.println("你出了" + yhS + "电脑出了" + jqS + "胜利");
} else if (yh == jq) {
System.out.println("你出了" + yhS + "电脑出了" + jqS + "平局");
} else {
System.out.print("你出了" + yhS + "电脑出了" + jqS + "失败");
}
}
}
}
巴巴鲁 发表于 2021-9-29 12:06
出现错误的原因就是没有给jqS值赋初始值或者在后面没有赋值,你去使用它,可能会照成不可预期的错误
具体 ...
那为什么String jqS上边与他一样的yhS没有这个问题 巴巴鲁 发表于 2021-9-29 12:06
出现错误的原因就是没有给jqS值赋初始值或者在后面没有赋值,你去使用它,可能会照成不可预期的错误
具体 ...
import java.util.Scanner;
public class a123 {
public static void main(String[] args) {
while (true) {
System.out.println("------------------猜拳小游戏------------------");
System.out.println("| 0.结束游戏 1.剪刀 2.石头 3.布 |");
System.out.println("| .\"\". .\"\", |");
System.out.println("| || // |");
System.out.println("| ||// |");
System.out.println("| || // |");
System.out.println("| ||/;-._ |");
System.out.println("| |` _// ; |");
System.out.println("| |/` ) // |");
System.out.println("| | //_/\\_/\\ |");
System.out.println("| |// | |");
System.out.println("| (' \\ '-| |");
System.out.println("| \\ `./ |");
System.out.println("| | | |");
System.out.println("| | | |");
System.out.println("---------------------------------------------");
Scanner sc = new Scanner(System.in);
int playerInt = sc.nextInt();
int computerInt = (int) (Math.random() * 3 + 1);
String playerStr;
switch (playerInt) {
case 0:
System.out.println("退出游戏");
return;
case 1:
playerStr = "剪刀";
break;
case 2:
playerStr = "石头";
break;
case 3:
playerStr = "布";
break;
default:
System.out.println("请出正确的数字!");
continue;
}
//转换电脑出拳数字为字符串 用if
String computerStr;
if (computerInt == 1) {
computerStr = "剪刀";
} else if (computerInt == 2) {
computerStr = "石头";
} else {
computerStr = "布";
}
//判断胜负
if ( playerInt== 1 && computerInt == 3 || playerInt == 2 && computerInt == 1 || playerInt == 3 && computerInt == 2) {
System.out.println("你出了" + playerStr + "电脑出了" + computerStr + "胜利");
} else if (playerInt == computerInt) {
System.out.println("你出了" + playerStr + "电脑出了" + computerStr + "平局");
} else {
System.out.print("你出了" + playerStr + "电脑出了" + computerStr + "失败");
}
}
}
}
为什么这个没有上边的问题
巴巴鲁 发表于 2021-9-29 12:06
出现错误的原因就是没有给jqS值赋初始值或者在后面没有赋值,你去使用它,可能会照成不可预期的错误
具体 ...
使用两个switch就会出现第一个问题,但是如果一个swtch的话就没有这个问题。虽然明白你之前的回答但是还是不知道为什么两个switch就会报错 因为你的第二个没有defalut,就可能会出现没有赋值的情况
if-else肯定有一个要执行
所以最好养成赋初始值的习惯 巴巴鲁 发表于 2021-9-29 14:30
因为你的第二个没有defalut,就可能会出现没有赋值的情况
if-else肯定有一个要执行
所以最好养成赋初始值 ...
明白了!谢谢老哥{:10_288:}
页:
[1]