java实现小游戏编程源代码

54次阅读
没有评论

共计 664 个字符,预计需要花费 2 分钟才能阅读完成。

这是一个简单的猜数字游戏的 Java 源代码:

import java.util.Scanner;
public class GuessingGame {public static void main(String[] args) {Scanner input = new Scanner(System.in);
int secretNumber = (int) (Math.random() * 100);
int guess = 0;
int attempts = 0;
System.out.println("Welcome to the guessing game!");
System.out.println("I'm thinking of a number between 1 and 100.");
while (guess != secretNumber) {System.out.print("Enter your guess:");
guess = input.nextInt();
attempts++;
if (guess  secretNumber) {System.out.println("Too high. Try again.");
} else {System.out.println("Congratulations! You guessed the number in" + attempts + "attempts.");
}
}
input.close();}
}

这个游戏会在 1 到 100 之间生成一个随机数,然后玩家需要猜出这个数。程序会根据玩家的猜测给出相应的提示,直到玩家猜中为止。最后会显示玩家猜中的次数。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-20发表,共计664字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)