- Python
python
import random
def game(): dxwaiyan.cn
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()
2. JavaScript (浏览器中的HTML页面)
HTML:
html
猜数字游戏
猜<script src="game.js"></script>
JavaScript (game.js):
javascript
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let attempts = 0;
let feedbackElement = document.getElementById(‘feedback’);
function checkGuess() {
const guess = parseInt(document.getElementById(‘guess’).value);
attempts++;
if (guess === numberToGuess) {
feedbackElement.textContent = `恭喜你,猜对了!你尝试了${attempts}次。`;
} else if (guess < numberToGuess) {
feedbackElement.textContent = '太小了!';
} else {
feedbackElement.textContent = '太大了!';
}
}
3. 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;
Scanner scanner = new Scanner(System.in);
int guess;
int attempts = 0;
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
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()
2. JavaScript (浏览器中的HTML页面)
HTML:
html
猜数字游戏
猜<script src="game.js"></script>
JavaScript (game.js):
javascript
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let attempts = 0;
let feedbackElement = document.getElementById(‘feedback’);
function checkGuess() {
const guess = parseInt(document.getElementById(‘guess’).value);
attempts++;
if (guess === numberToGuess) {
feedbackElement.textContent = `恭喜你,猜对了!你尝试了${attempts}次。`;
} else if (guess < numberToGuess) {
feedbackElement.textContent = '太小了!';
} else {
feedbackElement.textContent = '太大了!';
}
}
3. 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;
Scanner scanner = new Scanner(System.in);
int guess;
int attempts = 0;
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();
}
}
这些代码示例都是“猜数字”游戏的简化版,你可以根据需要进行扩展和增强。