
Python
python
import random
def guess_number(): aizhuw.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
const readline = require(‘readline’).createInterface({
input: process.stdin,
output: process.stdout
});
function guessNumber() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function askForGuess() {
readline.question('猜一个1到100之间的数字: ', (input) => {
guess = parseInt(input);
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
askForGuess();
} else if (guess > numberToGuess) {
console.log('太大了!');
askForGuess();
} else {
console.log(`恭喜你,猜对了!你用了${attempts}次尝试。`);
readline.close();
}
});
}
askForGuess();
}
guessNumber();
C# (控制台应用程序)
csharp
using System;
class Program
{
static void Main()
{
Random rnd = new Random();
int numberToGuess = rnd.Next(1, 101);
int guess = 0;
int attempts = 0;
do
{
Console.Write("猜一个1到100之间的数字: ");
guess = Convert.ToInt32(Console.ReadLine());
attempts++;
if (guess < numberToGuess)
{
Console.WriteLine("太小了!");
}
else if (guess > numberToGuess)
{
Console.WriteLine("太大了!");
}
} while (guess != numberToGuess);
Console.WriteLine($"恭喜你,猜对了!你用了{attempts}次尝试。");
}
}
这些示例都是简单的猜数字游戏,其中程序随机选择一个1到100之间的数字,然后让用户尝试猜测它。由于“多种电脑语言”可能涵盖非常广泛的编程语言,我将为你提供三个常见编程语言(Python、JavaScript 和 C#)的简单控制台游戏示例:猜数字游戏。
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
const readline = require(‘readline’).createInterface({
input: process.stdin,
output: process.stdout
});
function guessNumber() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function askForGuess() {
readline.question('猜一个1到100之间的数字: ', (input) => {
guess = parseInt(input);
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
askForGuess();
} else if (guess > numberToGuess) {
console.log('太大了!');
askForGuess();
} else {
console.log(`恭喜你,猜对了!你用了${attempts}次尝试。`);
readline.close();
}
});
}
askForGuess();
}
guessNumber();
C# (控制台应用程序)
csharp
using System;
class Program
{
static void Main()
{
Random rnd = new Random();
int numberToGuess = rnd.Next(1, 101);
int guess = 0;
int attempts = 0;
do
{
Console.Write("猜一个1到100之间的数字: ");
guess = Convert.ToInt32(Console.ReadLine());
attempts++;
if (guess < numberToGuess)
{
Console.WriteLine("太小了!");
}
else if (guess > numberToGuess)
{
Console.WriteLine("太大了!");
}
} while (guess != numberToGuess);
Console.WriteLine($"恭喜你,猜对了!你用了{attempts}次尝试。");
}
}
这些示例都是简单的猜数字游戏,其中程序随机选择一个1到100之间的数字,然后让用户尝试猜测它。
2万+

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



