- Python 示例
python
import random
def guess_number_game(): ns66.cn
number_to_guess = random.randint(1, 100)
guess = None
attempts = 0
print("猜数字游戏!我已经想好了一个1到100之间的数字。")
while guess != number_to_guess:
try:
guess = int(input("请输入你猜的数字:"))
attempts += 1
if guess < number_to_guess:
print("太小了!")
elif guess > number_to_guess:
print("太大了!")
else:
print(f"恭喜你!答对了!数字是{number_to_guess}。你尝试了{attempts}次。")
except ValueError:
print("请输入一个有效的数字!")
if name == “main”:
guess_number_game()
2. JavaScript 示例(HTML + JavaScript)
html
猜数字游戏
我已经想好了一个1到100之间的数字。你能猜到是哪个吗?
提交<script>
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = 0;
let attempts = 0;
function guess() {
guess = parseInt(document.getElementById('guessInput').value);
attempts++;
if (guess < numberToGuess) {
document.getElementById('result').innerText = "太小了!";
} else if (guess > numberToGuess) {
document.getElementById('result').innerText = "太大了!";
} else {
document.getElementById('result').innerText = `恭喜你!答对了!数字是${numberToGuess}。你尝试了${attempts}次。`;
}
}
</script>
3. C++ 示例 cpp #include #include // For rand() and srand() #include // For time()
using namespace std;
int main() {
srand(time(0)); // Seed the random number generator
int numberToGuess = rand() % 100 + 1; // Generate a random number between 1 and 100
int guess = 0;
int attempts = 0;
cout << "猜数字游戏!我已经想好了一个1到100之间的数字。" << endl;
while (guess != numberToGuess) {
cout << "请输入你猜的数字:";
cin >> guess;
attempts++;
if (guess < numberToGuess) {
cout << "太小了!" << endl;
} else if (guess > numberToGuess) {
cout << "太大了!" << endl;
} else {
cout << "恭喜你!答对了!数字是" << numberToGuess << "。你尝试了" << attempts << "次。" << endl;
}
}
return 0;
}
这三个示例分别展示了如何用Python、JavaScript(在网页中)和C++来编写一个简单的“猜数字”游戏。每种语言都有其特定的库和函数来处理输入输出及随机数生成等任务。由于篇幅限制,我将为你提供一个简单的“猜数字”游戏示例,分别用Python、JavaScript(适用于网页)和C++(控制台应用)来实现。
- Python 示例
python
import random
def guess_number_game():
number_to_guess = random.randint(1, 100)
guess = None
attempts = 0
print("猜数字游戏!我已经想好了一个1到100之间的数字。")
while guess != number_to_guess:
try:
guess = int(input("请输入你猜的数字:"))
attempts += 1
if guess < number_to_guess:
print("太小了!")
elif guess > number_to_guess:
print("太大了!")
else:
print(f"恭喜你!答对了!数字是{number_to_guess}。你尝试了{attempts}次。")
except ValueError:
print("请输入一个有效的数字!")
if name == “main”:
guess_number_game()
2. JavaScript 示例(HTML + JavaScript)
html
猜数字游戏
我已经想好了一个1到100之间的数字。你能猜到是哪个吗?
提交<script>
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = 0;
let attempts = 0;
function guess() {
guess = parseInt(document.getElementById('guessInput').value);
attempts++;
if (guess < numberToGuess) {
document.getElementById('result').innerText = "太小了!";
} else if (guess > numberToGuess) {
document.getElementById('result').innerText = "太大了!";
} else {
document.getElementById('result').innerText = `恭喜你!答对了!数字是${numberToGuess}。你尝试了${attempts}次。`;
}
}
</script>
3. C++ 示例 cpp #include #include // For rand() and srand() #include // For time()
using namespace std;
int main() {
srand(time(0)); // Seed the random number generator
int numberToGuess = rand() % 100 + 1; // Generate a random number between 1 and 100
int guess = 0;
int attempts = 0;
cout << "猜数字游戏!我已经想好了一个1到100之间的数字。" << endl;
while (guess != numberToGuess) {
cout << "请输入你猜的数字:";
cin >> guess;
attempts++;
if (guess < numberToGuess) {
cout << "太小了!" << endl;
} else if (guess > numberToGuess) {
cout << "太大了!" << endl;
} else {
cout << "恭喜你!答对了!数字是" << numberToGuess << "。你尝试了" << attempts << "次。" << endl;
}
}
return 0;
}
这三个示例分别展示了如何用Python、JavaScript(在网页中)和C++来编写一个简单的“猜数字”游戏。每种语言都有其特定的库和函数来处理输入输出及随机数生成等任务。