
当然可以。以下是一个简单的猜数字游戏的代码,分别用Python、Java和JavaScript来实现。
Python 版本
python
import random
def guess_number_game():
number_to_guess = random.randint(1, 100)
attempts = 0
print("欢迎来到猜数字游戏!请在1到100之间猜一个数字。")
while True:
user_guess = int(input("请输入你的猜测:"))
attempts += 1
if user_guess == number_to_guess:
print(f"恭喜你!你在{attempts}次尝试后猜对了数字!")
break
elif user_guess < number_to_guess:
print("太小了!请再试一次。")
else:
print("太大了!请再试一次。")
guess_number_game()
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 attempts = 0;
Scanner scanner = new Scanner(System.in);
System.out.println("欢迎来到猜数字游戏!请在1到100之间猜一个数字。");
while (true) {
System.out.print("请输入你的猜测:");
int userGuess = scanner.nextInt();
attempts++;
if (userGuess == numberToGuess) {
System.out.println("恭喜你!你在" + attempts + "次尝试后猜对了数字!");
break;
} else if (userGuess < numberToGuess) {
System.out.println("太小了!请再试一次。");
} else {
System.out.println("太大了!请再试一次。");
}
}
scanner.close();
}
}
JavaScript 版本(在Node.js环境中运行)
javascript
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
const randomNum = Math.floor(Math.random() * 100) + 1;
let attempts = 0;
console.log("欢迎来到猜数字游戏!请在1到100之间猜一个数字。");
rl.question("请输入你的猜测:", (answer) => {
let guess = parseInt(answer);
attempts++;
if (guess === randomNum) {
console.log(`恭喜你!你在${attempts}次尝试后猜对了数字!`);
rl.close();
} else if (guess < randomNum) {
console.log("太小了!请再试一次。");
rl.question("请输入你的猜测:", getGuess);
} else {
console.log("太大了!请再试一次。");
rl.question("请输入你的猜测:", getGuess);
}
});
function getGuess(answer) {
let guess = parseInt(answer);
attempts++;
#chhas{
margin-top: 50px;
padding:yctsy.cn;
font-size: 18px;
cursor: 10px 20px;
}
if (guess === randomNum) {
console.log(`恭喜你!你在${attempts}次尝试后猜对了数字!`);
rl.close();
} else if (guess < randomNum) {
console.log("太小了!请再试一次。");
rl.question("请输入你的猜测:", getGuess);
} else {
console.log("太大了!请再试一次。");
rl.question("请输入你的猜测:", getGuess);
}
}

被折叠的 条评论
为什么被折叠?



