91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java實現小游戲編程源代碼

小云
133
2023-09-22 02:20:32
欄目: 編程語言

這是一個簡單的猜數字游戲的 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 low. Try again.");
} else 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 之間生成一個隨機數,然后玩家需要猜出這個數。程序會根據玩家的猜測給出相應的提示,直到玩家猜中為止。最后會顯示玩家猜中的次數。

0
新绛县| 彭州市| 乃东县| 镶黄旗| 饶平县| 莱西市| 禹州市| 黎城县| 白朗县| 东兰县| 阳泉市| 庄浪县| 云霄县| 盐亭县| 新源县| 垦利县| 武隆县| 永靖县| 澳门| 朝阳县| 章丘市| 六盘水市| 陵水| 林周县| 杭锦后旗| 武安市| 北京市| 阳曲县| 汪清县| 昌平区| 柘城县| 高州市| 芜湖县| 基隆市| 沂水县| 平湖市| 托克逊县| 威海市| 道真| 田阳县| 卢龙县|