Python
python
import random
def guess_number(): fengbaoshun.com
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'恭喜你,猜对了!你用了{attempts}次尝试。')
guess_number()
JavaScript (在浏览器中运行)
html
<script>
function startGame() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
let output = document.getElementById('output');
function guessNumber() {
guess = parseInt(prompt('猜一个1到100之间的数字: '));
attempts++;
if (guess < numberToGuess) {
output.textContent = '太小了!';
} else if (guess > numberToGuess) {
output.textContent = '太大了!';
} else {
output.textContent = `恭喜你,猜对了!你用了${attempts}次尝试。`;
}
if (guess !== numberToGuess) {
guessNumber();
}
}
guessNumber();
}
</script>
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("恭喜你,猜对了!你用了" + 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'恭喜你,猜对了!你用了{attempts}次尝试。')
guess_number()
JavaScript (在浏览器中运行)
html
<script>
function startGame() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
let output = document.getElementById('output');
function guessNumber() {
guess = parseInt(prompt('猜一个1到100之间的数字: '));
attempts++;
if (guess < numberToGuess) {
output.textContent = '太小了!';
} else if (guess > numberToGuess) {
output.textContent = '太大了!';
} else {
output.textContent = `恭喜你,猜对了!你用了${attempts}次尝试。`;
}
if (guess !== numberToGuess) {
guessNumber();
}
}
guessNumber();
}
</script>
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("恭喜你,猜对了!你用了" + attempts + "次尝试。");
}
}
以上三个示例都是“猜数字”游戏的简单实现,每个程序都生成一个1到100之间的随机数,然后让用户尝试猜测它。程序会告诉用户他们的猜测是太高、太低还是正确,并跟踪用户尝试的次数。