Python:
python
import random
def guess_number():
number_to_guess = random.randint(1, 100)
earnersclub247.com
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()
Java:
java
import java.util.Random;
import java.util.Scanner;
public class GuessNumber {
public static void main(String[] args) {
Random rand = new Random();
int numberToGuess = rand.nextInt(100) + 1;
Scanner scanner = new Scanner(System.in);
int guess = 0;
int attempts = 0;
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 + "次尝试。");
}
}
JavaScript (在Node.js环境中运行):
javascript
const readline = require(‘readline’).createInterface({
input: process.stdin,
output: process.stdout
});
const numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function askForGuess() {
readline.question('猜一个1到100之间的数字: ', (answer) => {
guess = parseInt(answer, 10);
if (guess === numberToGuess) {
console.log(`恭喜你,猜对了!用了${attempts}次尝试。`);
readline.close();
} else if (guess < numberToGuess) {
console.log('太小了!');
attempts++;
askForGuess();
} else if (guess > numberToGuess) {
console.log('太大了!');
attempts++;
askForGuess();
}
});
}
askForGuess();
这些示例代码都是基于猜数字游戏,一个简单但经典的入门级编程游戏。您可以根据这些示例进一步扩展和修改游戏,以包含更多的功能和复杂性。由于篇幅限制,我将为您提供几种流行编程语言中的简单小游戏示例代码。这些示例通常会是控制台游戏,比如猜数字游戏。
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()
Java:
java
import java.util.Random;
import java.util.Scanner;
public class GuessNumber {
public static void main(String[] args) {
Random rand = new Random();
int numberToGuess = rand.nextInt(100) + 1;
Scanner scanner = new Scanner(System.in);
int guess = 0;
int attempts = 0;
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 + "次尝试。");
}
}
JavaScript (在Node.js环境中运行):
javascript
const readline = require(‘readline’).createInterface({
input: process.stdin,
output: process.stdout
});
const numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
function askForGuess() {
readline.question('猜一个1到100之间的数字: ', (answer) => {
guess = parseInt(answer, 10);
if (guess === numberToGuess) {
console.log(`恭喜你,猜对了!用了${attempts}次尝试。`);
readline.close();
} else if (guess < numberToGuess) {
console.log('太小了!');
attempts++;
askForGuess();
} else if (guess > numberToGuess) {
console.log('太大了!');
attempts++;
askForGuess();
}
});
}
askForGuess();
这些示例代码都是基于猜数字游戏,一个简单但经典的入门级编程游戏。您可以根据这些示例进一步扩展和修改游戏,以包含更多的功能和复杂性。