Python
python
import random
def game(): mi-sun.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'恭喜你,你猜对了!你尝试了{attempts}次。')
if name == “main”:
game()
JavaScript (Node.js 或 浏览器控制台)
javascript
function game() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
while (guess !== numberToGuess) {
guess = prompt('猜一个1到100之间的数字:');
guess = parseInt(guess, 10);
attempts++;
if (guess < numberToGuess) {
console.log('太低了!');
} else if (guess > numberToGuess) {
console.log('太高了!');
}
}
console.log(`恭喜你,你猜对了!你尝试了${attempts}次。`);
}
game();
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次。\n", attempts);
}
}
这些代码都是基于“猜数字”游戏的简化版本,你可以根据自己的需求进行扩展或修改。由于篇幅和复杂性限制,我无法为所有电脑语言提供完整的游戏代码,但我可以为你提供几种流行编程语言(如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'恭喜你,你猜对了!你尝试了{attempts}次。')
if name == “main”:
game()
JavaScript (Node.js 或 浏览器控制台)
javascript
function game() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
while (guess !== numberToGuess) {
guess = prompt('猜一个1到100之间的数字:');
guess = parseInt(guess, 10);
attempts++;
if (guess < numberToGuess) {
console.log('太低了!');
} else if (guess > numberToGuess) {
console.log('太高了!');
}
}
console.log(`恭喜你,你猜对了!你尝试了${attempts}次。`);
}
game();
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次。\n", attempts);
}
}
这些代码都是基于“猜数字”游戏的简化版本,你可以根据自己的需求进行扩展或修改。