- Python
python
import random
def guess_number(): zgshgys3w.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'恭喜你,你猜对了!数字是 {number_to_guess},你尝试了 {attempts} 次。')
if name == “main”:
guess_number()
2. JavaScript (Node.js 环境)
javascript
const readline = require(‘readline’);
const rl = 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 prompt() {
rl.question('猜一个1到100之间的数字: ', (input) => {
guess = parseInt(input);
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
} else if (guess > numberToGuess) {
console.log('太大了!');
} else {
console.log(`恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
rl.close();
}
prompt();
});
}
prompt();
}
guessNumber();
3. 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之间的数字: ");
if (int.TryParse(Console.ReadLine(), out guess))
{
attempts++;
if (guess < numberToGuess)
{
Console.WriteLine("太小了!");
}
else if (guess > numberToGuess)
{
Console.WriteLine("太大了!");
}
}
else
{
Console.WriteLine("请输入一个有效的数字!");
}
}
Console.WriteLine($"恭喜你,你猜对了!数字是 {numberToGuess},你尝试了 {attempts} 次。");
}
}
这些示例代码都是基于猜数字游戏的简单控制台应用程序。你可以根据自己的需要进行修改和扩展。由于“多种电脑语言”的范围非常广泛,我将为您提供三个常见编程语言(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'恭喜你,你猜对了!数字是 {number_to_guess},你尝试了 {attempts} 次。')
if name == “main”:
guess_number()
2. JavaScript (Node.js 环境)
javascript
const readline = require(‘readline’);
const rl = 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 prompt() {
rl.question('猜一个1到100之间的数字: ', (input) => {
guess = parseInt(input);
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
} else if (guess > numberToGuess) {
console.log('太大了!');
} else {
console.log(`恭喜你,你猜对了!数字是 ${numberToGuess},你尝试了 ${attempts} 次。`);
rl.close();
}
prompt();
});
}
prompt();
}
guessNumber();
3. 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之间的数字: ");
if (int.TryParse(Console.ReadLine(), out guess))
{
attempts++;
if (guess < numberToGuess)
{
Console.WriteLine("太小了!");
}
else if (guess > numberToGuess)
{
Console.WriteLine("太大了!");
}
}
else
{
Console.WriteLine("请输入一个有效的数字!");
}
}
Console.WriteLine($"恭喜你,你猜对了!数字是 {numberToGuess},你尝试了 {attempts} 次。");
}
}
这些示例代码都是基于猜数字游戏的简单控制台应用程序。你可以根据自己的需要进行修改和扩展。