- Python 版本
python
import random
def guess_number_game(): timezf.cn
number_to_guess = random.randint(1, 100)
guess = None
attempts = 0
print("欢迎来到猜数字游戏!")
print("我已经想好了一个1到100之间的数字。")
while guess != number_to_guess:
try:
guess = int(input("请猜一个数字:"))
attempts += 1
if guess < number_to_guess:
print("太小了!")
elif guess > number_to_guess:
print("太大了!")
else:
print(f"恭喜你!答对了!数字是{number_to_guess}。")
print(f"你总共猜了{attempts}次。")
except ValueError:
print("请输入一个有效的数字!")
if name == “main”:
guess_number_game()
2. JavaScript (HTML + JavaScript) 版本
html
猜数字游戏
我已经想好了一个1到100之间的数字。
猜测<script>
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess;
let attempts = 0;
function checkGuess() {
guess = parseInt(document.getElementById('guessInput').value, 10);
attempts++;
if (isNaN(guess)) {
document.getElementById('result').innerText = "请输入一个有效的数字!";
return;
}
if (guess < numberToGuess) {
document.getElementById('result').innerText = "太小了!";
} else if (guess > numberToGuess) {
document.getElementById('result').innerText = "太大了!";
} else {
document.getElementById('result').innerText = `恭喜你!答对了!数字是${numberToGuess}。你总共猜了${attempts}次。`;
}
}
</script>
3. Java 版本 (控制台应用程序) java import java.util.Random; import java.util.Scanner;
public class GuessNumberGame {
public static void main(String[] args) {
Random rand = new Random();
int numberToGuess = rand.nextInt(100) + 1;
int guess;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
System.out.println("欢迎来到猜数字游戏!");
System.out.println("我已经想好了一个1到100之间的数字。");
while (true) {
System.out.print("请猜一个数字:");
if (scanner.hasNextInt()) {
guess = scanner.nextInt();
attempts++;
if (guess < numberToGuess) {
System.out.println("太小了!");
} else if (guess > numberToGuess) {
System.out.println("太大了!");
} else {
System.out.println(f"恭喜你!答对了!数字是{numberToGuess}。");
System.out.println(f"你总共猜了{attempts}次。");
break;
}
} else {
System.out.println("请输入一个有效的数字!");
scanner.next(); // 清除无效输入
}
}
scanner.close();
}
}
// 注意:Java 中没有直接的 f-string,这里使用字符串拼接作为示例。
// 在实际项目中,你可能会使用 String.format() 或其他字符串处理方法。
这些当然可以。这次,我将为你提供一个简单的猜数字游戏的代码示例,使用几种不同的编程语言来实现。
- Python 版本
python
import random
def guess_number_game():
number_to_guess = random.randint(1, 100)
guess = None
attempts = 0
print("欢迎来到猜数字游戏!")
print("我已经想好了一个1到100之间的数字。")
while guess != number_to_guess:
try:
guess = int(input("请猜一个数字:"))
attempts += 1
if guess < number_to_guess:
print("太小了!")
elif guess > number_to_guess:
print("太大了!")
else:
print(f"恭喜你!答对了!数字是{number_to_guess}。")
print(f"你总共猜了{attempts}次。")
except ValueError:
print("请输入一个有效的数字!")
if name == “main”:
guess_number_game()
2. JavaScript (HTML + JavaScript) 版本
html
猜数字游戏
我已经想好了一个1到100之间的数字。
猜测<script>
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess;
let attempts = 0;
function checkGuess() {
guess = parseInt(document.getElementById('guessInput').value, 10);
attempts++;
if (isNaN(guess)) {
document.getElementById('result').innerText = "请输入一个有效的数字!";
return;
}
if (guess < numberToGuess) {
document.getElementById('result').innerText = "太小了!";
} else if (guess > numberToGuess) {
document.getElementById('result').innerText = "太大了!";
} else {
document.getElementById('result').innerText = `恭喜你!答对了!数字是${numberToGuess}。你总共猜了${attempts}次。`;
}
}
</script>
3. Java 版本 (控制台应用程序) java import java.util.Random; import java.util.Scanner;
public class GuessNumberGame {
public static void main(String[] args) {
Random rand = new Random();
int numberToGuess = rand.nextInt(100) + 1;
int guess;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
System.out.println("欢迎来到猜数字游戏!");
System.out.println("我已经想好了一个1到100之间的数字。");
while (true) {
System.out.print("请猜一个数字:");
if (scanner.hasNextInt()) {
guess = scanner.nextInt();
attempts++;
if (guess < numberToGuess) {
System.out.println("太小了!");
} else if (guess > numberToGuess) {
System.out.println("太大了!");
} else {
System.out.println(f"恭喜你!答对了!数字是{numberToGuess}。");
System.out.println(f"你总共猜了{attempts}次。");
break;
}
} else {
System.out.println("请输入一个有效的数字!");
scanner.next(); // 清除无效输入
}
}
scanner.close();
}
}
// 注意:Java 中没有直接的 f-string,这里使用字符串拼接作为示例。
// 在实际项目中,你可能会使用 String.format() 或其他字符串处理方法。
这些