gpt4 book ai didi

java - 如何循环这个 switch 语句?

转载 作者:行者123 更新时间:2023-12-02 02:06:36 26 4
gpt4 key购买 nike

我正在用 Java 编写一个科学计算器程序,我让该程序通过 switch 语句获得我需要的答案。
但我还需要 switch 语句来循环,并且我遇到了很多问题。
谁能帮我吗?

这是代码:

import java.util.Scanner;
import java.lang.Math;
import static java.lang.Math.log10;

public class Main {

public static void main(String[] args) {
int opt = 0;
int counter = 0;
double firstOperand = 0;
double secondOperand = 0;
double sumOfcalculations = 0;
double result = 0;
Scanner sc = new Scanner(System.in);

System.out.println("Current Result: " + sumOfcalculations);
System.out.println(" ");
System.out.println("Calculator Menu");
System.out.println("---------------");
System.out.println("0. Exit Program");
System.out.println("1. Addition");
System.out.println("2. Subtraction");
System.out.println("3. Multiplication");
System.out.println("4. Division");
System.out.println("5. Exponentiation");
System.out.println("6. Logarithm");
System.out.println("7. Display Average");
System.out.println(" ");
System.out.print("Enter Menu Selection: ");
opt = sc.nextInt();

switch (opt){
case 0:
return;
case 1:
System.out.print("Enter first operand: "); // Ask for first operand
firstOperand = sc.nextDouble(); // Gets first double input
System.out.print("Enter second operand: "); // Ask for 2nd operand
secondOperand = sc.nextDouble(); // gets 2nd operand
result = firstOperand + secondOperand;
++counter;
sumOfcalculations = sumOfcalculations + result;
System.out.print("Result: " + result + "Counter: " + counter);
case 2:
System.out.print("Enter first operand: "); // Ask for first operand
firstOperand = sc.nextDouble(); // Gets first double input
System.out.print("Enter second operand: "); // Ask for 2nd operand
secondOperand = sc.nextDouble(); // gets 2nd operand
result = firstOperand - secondOperand;
++counter;
sumOfcalculations = sumOfcalculations + result;
System.out.print("Result: " + result + "Counter: " + counter);
case 3:
System.out.print("Enter first operand: "); // Ask for first operand
firstOperand = sc.nextDouble(); // Gets first double input
System.out.print("Enter second operand: "); // Ask for 2nd operand
secondOperand = sc.nextDouble(); // gets 2nd operand
result = firstOperand * secondOperand;
++counter;
sumOfcalculations = sumOfcalculations + result;
System.out.print("Result: " + result + "Counter: " + counter);
case 4:
System.out.print("Enter first operand: "); // Ask for first operand
firstOperand = sc.nextDouble(); // Gets first double input
System.out.print("Enter second operand: "); // Ask for 2nd operand
secondOperand = sc.nextDouble(); // gets 2nd operand
result = firstOperand / secondOperand;
++counter;
sumOfcalculations = sumOfcalculations + result;
System.out.print("Result: " + result + "Counter: " + counter);
case 5:
System.out.print("Enter first operand: "); // Ask for first operand
firstOperand = sc.nextDouble(); // Gets first double input
System.out.print("Enter second operand: "); // Ask for 2nd operand
secondOperand = sc.nextDouble(); // gets 2nd operand
result = Math.pow(firstOperand, secondOperand);
++counter;
sumOfcalculations = sumOfcalculations + result;
System.out.print("Result: " + result + "Counter: " + counter);
case 6:
System.out.print("Enter first operand: "); // Ask for first operand
firstOperand = sc.nextDouble(); // Gets first double input
System.out.print("Enter second operand: "); // Ask for 2nd operand
secondOperand = sc.nextDouble(); // gets 2nd operand
result = (log10(secondOperand)) / (log10(firstOperand));
++counter;
sumOfcalculations = sumOfcalculations + result;
System.out.print("Result: " + result + "Counter: " + counter);
case 7:
System.out.println("Sum of Calculations: " + sumOfcalculations);
System.out.println("Number of Calculations: " + counter);
System.out.println("Average of calculations: " + sumOfcalculations/counter);
default:
System.out.println("Error: Invalid selection!");
break;
}

}
}

我知道我使 switch 语句有点过于复杂,但这是我让它按我的需要工作的唯一方法。

最佳答案

使用实际的循环机制

Scanner sc = new Scanner(System.in);
String input;
while (true) {
input = sc.nextLine();
if (input.equals("0")) break;

menu(Integer.parseInt(input)); // Make 'static void menu(int op)' a separate method, not dump everything in the main method
}
System.out.println("Goodbye!");
return;

您还需要让案例有中断

case 1:
addition(); // TODO: define this
break;
case 2:
subtraction(); // TODO: define this
break;
// ... etc
default:

关于java - 如何循环这个 switch 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50672338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com