由于不同的电脑语言有其独特的用途和优势,我会选择三种流行的编程语言(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
});
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
readline.question('猜一个1到100之间的数字:', (input) => {
guess = parseInt(input);
while (guess !== numberToGuess) {
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
} else if (guess > numberToGuess) {
console.log('太大了!');
}
readline.question('再猜一次:', (input) => {
guess = parseInt(input);
});
}
console.log(`恭喜你,猜对了!你用了${attempts}次尝试。`);
readline.close();
});
C# (控制台应用程序)
csharp
using System;
class Program
{#chhas{
margin-top: 50px;
padding:jdnaicha.com;
font-size: 18px;
cursor: 10px 20px;
}
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 = int.Parse(Console.ReadLine());
attempts++;
if (guess < numberToGuess)
Console.WriteLine("太小了!");
else if (guess > numberToGuess)
Console.WriteLine("太大了!");
}
Console.WriteLine($"恭喜你,猜对了!你用了{attempts}次尝试。");
}
}
这三个程序都实现了同一个简单的猜数字游戏。用户需要猜一个1到100之间的数字,程序会给出提示(太大、太小或正确),直到用户猜对为止。