
- Python - 猜数字游戏
python
import random
def guess_number(): cy2.cn
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} 次。')
guess_number()
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 gameLoop() {
rl.question('猜一个1到100之间的数字: ', (answer) => {
guess = parseInt(answer);
attempts++;
if (guess < numberToGuess) {
console.log(‘太低了!’);
gameLoop();
} else if (guess > numberToGuess) {
console.log(‘太高了!’);
gameLoop();
} else {
console.log(恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。);
rl.close();
}
});
}
gameLoop();
3. Java - 猜数字游戏
java
import java.util.Random;
import java.util.Scanner;
public class GuessNumber {
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 + " 次。");
}
}
这些示例都是基于简单的“猜数字”游戏,你可以根据自己的需要进行扩展和修改。由于编写一个完整的小程序游戏代码会相当长且复杂,我将为你提供几种不同编程语言中的简单游戏示例代码片段。这些示例将基于控制台应用程序,因为它们是跨平台的,并且容易在大多数环境中运行。
- Python - 猜数字游戏
python
import random
def guess_number():
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} 次。')
guess_number()
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 gameLoop() {
rl.question('猜一个1到100之间的数字: ', (answer) => {
guess = parseInt(answer);
attempts++;
if (guess < numberToGuess) {
console.log(‘太低了!’);
gameLoop();
} else if (guess > numberToGuess) {
console.log(‘太高了!’);
gameLoop();
} else {
console.log(恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。);
rl.close();
}
});
}
gameLoop();
3. Java - 猜数字游戏
java
import java.util.Random;
import java.util.Scanner;
public class GuessNumber {
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 + " 次。");
}
}
这些示例都是基于简单的“猜数字”游戏,你可以根据自己的需要进行扩展和修改。

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



