JAVA菜单程序,包括九九乘法表,猜数游戏,水仙花数,输入n求和
时间: 2024-02-28 16:55:29 浏览: 83
好的,下面是一个简单的JAVA菜单程序,包含九九乘法表、猜数游戏、水仙花数、输入n求和四个功能。希望能够帮到你!
```java
import java.util.Scanner;
public class MenuProgram {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (true) {
System.out.println("请选择功能:");
System.out.println("1. 九九乘法表");
System.out.println("2. 猜数游戏");
System.out.println("3. 水仙花数");
System.out.println("4. 输入n求和");
System.out.println("0. 退出程序");
int choice = scanner.nextInt();
switch (choice) {
case 0:
System.exit(0);
break;
case 1:
printMultiplicationTable();
break;
case 2:
guessNumber();
break;
case 3:
narcissisticNumber();
break;
case 4:
sumN();
break;
default:
System.out.println("输入有误,请重新选择!");
break;
}
}
}
// 输出九九乘法表
public static void printMultiplicationTable() {
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= i; j++) {
System.out.print(j + " × " + i + " = " + (i * j) + "\t");
}
System.out.println();
}
}
// 猜数游戏
public static void guessNumber() {
int target = (int) (Math.random() * 100) + 1;
Scanner scanner = new Scanner(System.in);
int count = 0;
while (true) {
System.out.print("请输入猜测的数字(1~100):");
int guess = scanner.nextInt();
count++;
if (guess > target) {
System.out.println("猜大了!");
} else if (guess < target) {
System.out.println("猜小了!");
} else {
System.out.println("猜对了!共猜了 " + count + " 次。");
break;
}
}
}
// 输出三位数中的水仙花数
public static void narcissisticNumber() {
for (int i = 100; i <= 999; i++) {
int a = i / 100; // 百位
int b = i / 10 % 10; // 十位
int c = i % 10; // 个位
if (i == a * a * a + b * b * b + c * c * c) {
System.out.print(i + " ");
}
}
System.out.println();
}
// 输入n求和
public static void sumN() {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入n的值:");
int n = scanner.nextInt();
int sum = 0;
for (int i = 1; i <= n; i++) {
sum += i;
}
System.out.println("1~" + n + " 的和为:" + sum);
}
}
```
这个程序中,我们使用了一个 while 循环,让用户不断地选择功能,直到用户选择退出程序。在每个功能对应的函数中实现相应的功能。具体实现请参考代码。
阅读全文