Python示例:猜数字游戏
python
import random
def game(): gd360.cn
number_to_guess = random.randint(1, 100)
attempts = 0
print("欢迎来到猜数字游戏!数字范围是1到100。")
while True:
try:
user_guess = int(input("请输入你猜测的数字:"))
except ValueError:
print("请输入一个有效的数字!")
continue
attempts += 1
if user_guess < number_to_guess:
print("太小了!再试一次。")
elif user_guess > number_to_guess:
print("太大了!再试一次。")
else:
print(f"恭喜你!你在{attempts}次尝试后猜对了数字!")
break
if name == “main”:
game()
JavaScript示例:石头剪刀布游戏
这个简单的JavaScript游戏可以在浏览器的控制台中运行,或者嵌入到HTML页面的
javascript
function getComputerChoice() {
const choices = [‘石头’, ‘剪刀’, ‘布’];
return choices[Math.floor(Math.random() * choices.length)];
}
function getWinner(userChoice, computerChoice) {
if (userChoice === computerChoice) {
return ‘平局’;
} else if (
(userChoice === ‘石头’ && computerChoice === ‘剪刀’) ||
(userChoice === ‘剪刀’ && computerChoice === ‘布’) ||
(userChoice === ‘布’ && computerChoice === ‘石头’)
) {
return ‘你赢了’;
} else {
return ‘电脑赢了’;
}
}
function startGame() {
const userChoice = prompt(‘请选择:石头、剪刀或布’);
const computerChoice = getComputerChoice();
console.log(你的选择是:${userChoice}
);
console.log(电脑的选择是:${computerChoice}
);
console.log(getWinner(userChoice, computerChoice));
}
// 在浏览器控制台或HTML页面中调用 startGame() 来开始游戏。
这两个示例分别展示了使用Python和JavaScript编写的小游戏代码。你可以根据自己的需求和兴趣进一步扩展或修改这些代码。当然可以!我会为你提供使用Python和JavaScript两种不同编程语言的小游戏代码示例。
Python示例:猜数字游戏
python
import random
def game():
number_to_guess = random.randint(1, 100)
attempts = 0
print("欢迎来到猜数字游戏!数字范围是1到100。")
while True:
try:
user_guess = int(input("请输入你猜测的数字:"))
except ValueError:
print("请输入一个有效的数字!")
continue
attempts += 1
if user_guess < number_to_guess:
print("太小了!再试一次。")
elif user_guess > number_to_guess:
print("太大了!再试一次。")
else:
print(f"恭喜你!你在{attempts}次尝试后猜对了数字!")
break
if name == “main”:
game()
JavaScript示例:石头剪刀布游戏
这个简单的JavaScript游戏可以在浏览器的控制台中运行,或者嵌入到HTML页面的
javascript
function getComputerChoice() {
const choices = [‘石头’, ‘剪刀’, ‘布’];
return choices[Math.floor(Math.random() * choices.length)];
}
function getWinner(userChoice, computerChoice) {
if (userChoice === computerChoice) {
return ‘平局’;
} else if (
(userChoice === ‘石头’ && computerChoice === ‘剪刀’) ||
(userChoice === ‘剪刀’ && computerChoice === ‘布’) ||
(userChoice === ‘布’ && computerChoice === ‘石头’)
) {
return ‘你赢了’;
} else {
return ‘电脑赢了’;
}
}
function startGame() {
const userChoice = prompt(‘请选择:石头、剪刀或布’);
const computerChoice = getComputerChoice();
console.log(你的选择是:${userChoice}
);
console.log(电脑的选择是:${computerChoice}
);
console.log(getWinner(userChoice, computerChoice));
}
// 在浏览器控制台或HTML页面中调用 startGame() 来开始游戏。
这两个示例分别展示了使用Python和JavaScript编写的小游戏代码。你可以根据自己的需求和兴趣进一步扩展或修改这些代码。