Python 示例:猜数字游戏
python
import random
def guess_number():
number_to_guess = random.randint(1, 100) zhongmeijianshe.cn
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 示例:猜数字游戏(在浏览器控制台运行)
javascript
function guessNumber() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
while (guess !== numberToGuess) {
guess = parseInt(prompt('猜一个1到100之间的数字:'), 10);
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
} else if (guess > numberToGuess) {
console.log('太大了!');
}
}
console.log(`恭喜你,猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
}
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;
Scanner scanner = new Scanner(System.in);
int guess = 0;
int attempts = 0;
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.printf("恭喜你,猜对了!数字是 %d,你尝试了 %d 次。\n", numberToGuess, attempts);
}
}
这些示例都实现了简单的猜数字游戏。玩家需要猜测一个在1到100之间的随机数字,并根据玩家的猜测给出相应的提示,直到玩家猜对为止。由于篇幅限制,我不能为每一种编程语言都提供一个完整的游戏代码,但我可以为你提供几种流行编程语言(如 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 示例:猜数字游戏(在浏览器控制台运行)
javascript
function guessNumber() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
while (guess !== numberToGuess) {
guess = parseInt(prompt('猜一个1到100之间的数字:'), 10);
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
} else if (guess > numberToGuess) {
console.log('太大了!');
}
}
console.log(`恭喜你,猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
}
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;
Scanner scanner = new Scanner(System.in);
int guess = 0;
int attempts = 0;
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.printf("恭喜你,猜对了!数字是 %d,你尝试了 %d 次。\n", numberToGuess, attempts);
}
}
这些示例都实现了简单的猜数字游戏。玩家需要猜测一个在1到100之间的随机数字,并根据玩家的猜测给出相应的提示,直到玩家猜对为止。