- Python 版本cy2.cn
python
import random
def game():
number_to_guess = random.randint(1, 100)
guess = None
attempts = 0
while guess != number_to_guess:
guess = int(input('猜一个 1 到 100 之间的数字: '))
attempts += 1
if guess < number_to_guess:
print('太小了!')
elif guess > number_to_guess:
print('太大了!')
print(f'恭喜你,你猜对了!数字是 {number_to_guess},你尝试了 {attempts} 次。')
if name == “main”:
game()
2. JavaScript 版本(在 Node.js 环境中运行)
javascript
const readline = require(‘readline’);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function game() {
rl.question('猜一个 1 到 100 之间的数字: ', (input) => {
guess = parseInt(input);
attempts++;
if (guess === numberToGuess) {
console.log(`恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
rl.close();
} else if (guess < numberToGuess) {
console.log('太小了!');
game();
} else {
console.log('太大了!');
game();
}
});
}
game();
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 = 0;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
while (guess != numberToGuess) {
System.out.print("猜一个 1 到 100 之间的数字: ");
guess = scanner.nextInt();
attempts++;
if (guess < numberToGuess) {
System.out.println("太小了!");
} else if (guess > numberToGuess) {
System.out.println("太大了!");
}
}
System.out.println("恭喜你,你猜对了!数字是 " + numberToGuess + ",你尝试了 " + attempts + " 次。");
}
}
以上三个程序都是简单的猜数字游戏,其中程序会随机生成一个 1 到 100 之间的整数,然后要求用户输入他们的猜测,直到猜对为止。由于各种编程语言的语法和特性不同,我将为你提供三种常见编程语言(Python、JavaScript、Java)的简单控制台游戏代码示例:一个基本的猜数字游戏。
- Python 版本
python
import random
def game():
number_to_guess = random.randint(1, 100)
guess = None
attempts = 0
while guess != number_to_guess:
guess = int(input('猜一个 1 到 100 之间的数字: '))
attempts += 1
if guess < number_to_guess:
print('太小了!')
elif guess > number_to_guess:
print('太大了!')
print(f'恭喜你,你猜对了!数字是 {number_to_guess},你尝试了 {attempts} 次。')
if name == “main”:
game()
2. JavaScript 版本(在 Node.js 环境中运行)
javascript
const readline = require(‘readline’);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function game() {
rl.question('猜一个 1 到 100 之间的数字: ', (input) => {
guess = parseInt(input);
attempts++;
if (guess === numberToGuess) {
console.log(`恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
rl.close();
} else if (guess < numberToGuess) {
console.log('太小了!');
game();
} else {
console.log('太大了!');
game();
}
});
}
game();
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 = 0;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
while (guess != numberToGuess) {
System.out.print("猜一个 1 到 100 之间的数字: ");
guess = scanner.nextInt();
attempts++;
if (guess < numberToGuess) {
System.out.println("太小了!");
} else if (guess > numberToGuess) {
System.out.println("太大了!");
}
}
System.out.println("恭喜你,你猜对了!数字是 " + numberToGuess + ",你尝试了 " + attempts + " 次。");
}
}
以上三个程序都是简单的猜数字游戏,其中程序会随机生成一个 1 到 100 之间的整数,然后要求用户输入他们的猜测,直到猜对为止。