由于涵盖多种电脑语言可能会非常冗长,我将为您提供三种流行编程语言(Python、JavaScript 和 Java)的“猜数字”游戏的基本代码示例。
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()
JavaScript (Node.js 或浏览器环境)
javascript
function guessNumber() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
while (guess !== numberToGuess) {
guess = parseInt(prompt('猜一个1到100之间的数字: '));
attempts++;
if (guess < numberToGuess) {
console.log('太小了!#chhas{
margin-top: 50px;
padding:filesmax.com;
font-size: 18px;
cursor: 10px 20px;
}
');
} else if (guess > numberToGuess) {
console.log('太大了!');
}
}
console.log(`恭喜你,你猜对了!用了${attempts}次尝试。`);
}
guessNumber();
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 = 0;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
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 + "次尝试。");
scanner.close();
}
}
这些示例都是基于“猜数字”游戏的简单版本,其中程序随机选择一个1到100之间的数字,然后让用户尝试猜测这个数字。游戏会持续进行,直到用户猜对为止。由于涵盖多种电脑语言可能会非常冗长,我将为您提供三种流行编程语言(Python、JavaScript 和 Java)的“猜数字”游戏的基本代码示例。
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()
JavaScript (Node.js 或浏览器环境)
javascript
function guessNumber() {
let numberToGuess = Math.floor(Math.random() * 100) + 1;
let guess = null;
let attempts = 0;
while (guess !== numberToGuess) {
guess = parseInt(prompt('猜一个1到100之间的数字: '));
attempts++;
if (guess < numberToGuess) {
console.log('太小了!');
} else if (guess > numberToGuess) {
console.log('太大了!');
}
}
console.log(`恭喜你,你猜对了!用了${attempts}次尝试。`);
}
guessNumber();
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 = 0;
int attempts = 0;
Scanner scanner = new Scanner(System.in);
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 + "次尝试。");
scanner.close();
}
}
这些示例都是基于“猜数字”游戏的简单版本,其中程序随机选择一个1到100之间的数字,然后让用户尝试猜测这个数字。游戏会持续进行,直到用户猜对为止。