
Python
python
import random
def guess_number(): cottonzone.com.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}次尝试。')
guess_number()
JavaScript (Node.js 或浏览器控制台)
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之间的数字: '));
attempts++;
if (guess < numberToGuess) {
console.log('太低了!');
} else if (guess > numberToGuess) {
console.log('太高了!');
}
}
console.log(`恭喜你,你猜对了!用了${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;
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 + "次尝试。");
}
}
C#
csharp
using System;
class Program {
static void Main() {
Random rand = new Random();
int numberToGuess = rand.Next(1, 101);
int guess = 0;
int attempts = 0;
while (guess != numberToGuess) {
Console.Write("猜一个1到100之间的数字: ");
guess = Convert.ToInt32(Console.ReadLine());
attempts++;
if (guess < numberToGuess) {
Console.WriteLine("太低了!");
} else if (guess > numberToGuess) {
Console.WriteLine("太高了!");
}
}
Console.WriteLine("恭喜你,你猜对了!用了" + attempts + "次尝试。");
}
}
以上代码只是每个语言中一个非常简单的示例,您可以根据需要进行扩展和改进。由于生成完整的游戏代码在不同语言中可能相对冗长,我将为您提供每种语言中一个非常基础的“猜数字”游戏的框架。这个游戏会随机生成一个1到100之间的数字,然后让用户尝试猜测它。
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 (Node.js 或浏览器控制台)
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之间的数字: '));
attempts++;
if (guess < numberToGuess) {
console.log('太低了!');
} else if (guess > numberToGuess) {
console.log('太高了!');
}
}
console.log(`恭喜你,你猜对了!用了${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;
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 + "次尝试。");
}
}
C#
csharp
using System;
class Program {
static void Main() {
Random rand = new Random();
int numberToGuess = rand.Next(1, 101);
int guess = 0;
int attempts = 0;
while (guess != numberToGuess) {
Console.Write("猜一个1到100之间的数字: ");
guess = Convert.ToInt32(Console.ReadLine());
attempts++;
if (guess < numberToGuess) {
Console.WriteLine("太低了!");
} else if (guess > numberToGuess) {
Console.WriteLine("太高了!");
}
}
Console.WriteLine("恭喜你,你猜对了!用了" + attempts + "次尝试。");
}
}
以上代码只是每个语言中一个非常简单的示例,您可以根据需要进行扩展和改进。

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



