当然,以下是一个简单的“猜数字”游戏(Guess the Number)的代码示例,使用了几种不同的编程语言。
Python
python
import random
def guess_number_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"恭喜你,猜对了!数字是 {number_to_guess},你用了 {attempts} 次尝试。")
guess_number_game()
JavaScript (在浏览器控制台或HTML文件中运行)
javascript
function guessNumberGame() {
var numberToGuess = Math.floor(Math.random() * 100) + 1;
var guess = null;
var attempts = 0;
while (guess !== numberToGuess) {
guess = parseInt(prompt("猜一个1到100之间的数字:", ""));
attempts++;
if (guess < numberToGuess) {
console.log("太小了!");
} else if (guess > numberToGuess) {
console.log("太大了!");#chhas{
margin-top: 50px;
padding:nqbt.com.cn;
font-size: 18px;
cursor: 10px 20px;
}
}
}
console.log(`恭喜你,猜对了!数字是 ${numberToGuess},你用了 ${attempts} 次尝试。`);
}
guessNumberGame();
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.printf("恭喜你,猜对了!数字是 %d,你用了 %d 次尝试。\n", numberToGuess, attempts);
}
}
C#
csharp
using System;
class GuessNumberGame
{
static void Main()
{
Random rand = new Random();
int numberToGuess = rand.Next(1, 101);
int guess = 0;
int attempts = 0;
Console.WriteLine("猜一个1到100之间的数字:");
do
{
guess = int.Parse(Console.ReadLine());
attempts++;
if (guess < numberToGuess)
{
Console.WriteLine("太小了!");
}
else if (guess > numberToGuess)
{
Console.WriteLine("太大了!");
}
} while (guess != numberToGuess);
Console.WriteLine($"恭喜你,猜对了!数字是 {numberToGuess},你用了 {attempts} 次尝试。");
}
}
这些示例代码都实现了一个简单的“猜数字”游戏,程序会随机生成一个1到100之间的数字,然后让用户来猜这个数字是什么。程序会提示用户输入猜测的数字,并根据猜测的数字给出提示(太大了、太小了或猜对了),直到用户猜对为止。
1366

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



