我在互联网上搜索了几个小时,但找不到适合我的正确答案。
所以.. 我制作了一款名为“seabattle”的游戏 玩完该游戏后,控制台出现了再次玩的问题。
System.out.println("Well done! " + whosturn.getName() + ". A ship down!" );
System.out.println("Hurraaaaaayyyyy, All boats down!!");
System.out.println("Do you want to play this game again? (y/n) ");
input = scanner.next().toLowerCase();
if(input == "y"){
System.out.println("The game should start again now..");
System.out.println("Butttttttt, I don't know how to...");
}
else{
System.out.println("Thank you for player Battleships!");
System.out.println("See you next time ;)");
}
}
else{
FiredPosition.setDisplayValue('*');
System.out.println("Good job, you hit a ship!");
switchTurn();
}
如果用户在控制台中输入 y。游戏应该重新开始。
我读了一些关于 Main(args) 或类似的东西。这对我不起作用,因为这是另一门课。
我希望你们能帮助我吗?
巧欧