Python 猜数字游戏
python
import random
def game():
number_to_guess = random.randint(1, 100) wiee.cn
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}次尝试。')
if name == “main”:
game()
JavaScript 猜数字游戏(HTML/JS)
HTML:
html
<script src="game.js"></script>
JavaScript (game.js):
javascript
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess;
let attempts = 0;
function checkGuess() {
guess = parseInt(document.getElementById(‘guess’).value);
attempts++;
if (guess === numberToGuess) {
document.getElementById('result').textContent = `恭喜你,猜对了!你用了${attempts}次尝试。`;
} else if (guess < numberToGuess) {
document.getElementById('result').textContent = '太小了!';
} else {
document.getElementById('result').textContent = '太大了!';
}
}
Java 猜数字游戏(控制台应用)
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;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
while (true) {
System.out.print("猜一个1到100之间的数字: ");
guess = scanner.nextInt();
attempts++;
if (guess == numberToGuess) {
System.out.println("恭喜你,猜对了!你用了" + attempts + "次尝试。");
break;
} else if (guess < numberToGuess) {
System.out.println("太小了!");
} else {
System.out.println("太大了!");
}
}
scanner.close();
}
}
这些示例都是基于控制台或简单网页的猜数字游戏。你可以根据自己的需求进行扩展和修改。由于篇幅限制,我无法为所有编程语言都提供一个完整的小程序游戏代码,但我可以为你提供几种流行编程语言(如Python、JavaScript、Java)的简单小游戏(如猜数字游戏)的代码示例。
Python 猜数字游戏
python
import random
def 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'恭喜你,猜对了!你用了{attempts}次尝试。')
if name == “main”:
game()
JavaScript 猜数字游戏(HTML/JS)
HTML:
html
<script src="game.js"></script>
JavaScript (game.js):
javascript
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess;
let attempts = 0;
function checkGuess() {
guess = parseInt(document.getElementById(‘guess’).value);
attempts++;
if (guess === numberToGuess) {
document.getElementById('result').textContent = `恭喜你,猜对了!你用了${attempts}次尝试。`;
} else if (guess < numberToGuess) {
document.getElementById('result').textContent = '太小了!';
} else {
document.getElementById('result').textContent = '太大了!';
}
}
Java 猜数字游戏(控制台应用)
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;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
while (true) {
System.out.print("猜一个1到100之间的数字: ");
guess = scanner.nextInt();
attempts++;
if (guess == numberToGuess) {
System.out.println("恭喜你,猜对了!你用了" + attempts + "次尝试。");
break;
} else if (guess < numberToGuess) {
System.out.println("太小了!");
} else {
System.out.println("太大了!");
}
}
scanner.close();
}
}
这些示例都是基于控制台或简单网页的猜数字游戏。你可以根据自己的需求进行扩展和修改。