Python
python
import random
def guess_number():
number_to_guess = random.randint(1, 100) haoqian168.com
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()
JavaScript (Node.js 环境)
javascript
const readline = require(‘readline’);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
function guessNumber() {
const numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function checkGuess() {
guess = parseInt(input, 10);
attempts++;
if (isNaN(guess)) {
console.log('请输入一个整数!');
rl.question('猜一个1到100之间的数字: ', checkGuess);
} else if (guess < numberToGuess) {
console.log('太小了!');
rl.question('再试一次: ', checkGuess);
} else if (guess > numberToGuess) {
console.log('太大了!');
rl.question('再试一次: ', checkGuess);
} else {
console.log(`恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
rl.close();
}
}
rl.question('猜一个1到100之间的数字: ', checkGuess);
}
guessNumber();
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 + " 次。");
scanner.close();
}
}
以上三个程序都是“猜数字”游戏的简单实现,你可以根据自己的需要进行修改和扩展。由于篇幅限制,我将为你提供几种流行编程语言(Python、JavaScript、Java)的简单控制台游戏代码示例,即“猜数字”游戏。
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()
JavaScript (Node.js 环境)
javascript
const readline = require(‘readline’);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
function guessNumber() {
const numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function checkGuess() {
guess = parseInt(input, 10);
attempts++;
if (isNaN(guess)) {
console.log('请输入一个整数!');
rl.question('猜一个1到100之间的数字: ', checkGuess);
} else if (guess < numberToGuess) {
console.log('太小了!');
rl.question('再试一次: ', checkGuess);
} else if (guess > numberToGuess) {
console.log('太大了!');
rl.question('再试一次: ', checkGuess);
} else {
console.log(`恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
rl.close();
}
}
rl.question('猜一个1到100之间的数字: ', checkGuess);
}
guessNumber();
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 + " 次。");
scanner.close();
}
}
以上三个程序都是“猜数字”游戏的简单实现,你可以根据自己的需要进行修改和扩展。