-8
幫助球員選擇+, - ,/,*,我怎麼能使其工作使用switch語句運營商的Java switch語句我想創建一個程序,讓
import java.util.Scanner;
public class practice1{
public static void main (String[]Args){
Scanner input = new Scanner(System.in);
Integer num1, num2;
char op = '+', '-', '/', '*';
System.out.println("Select an operator +,-,*,/");
switch(op){
case "+":
System.out.println("Enter two numbers to add");
System.out.print("Enter first number: "); num1 = input.nextInt();
System.out.print("Enter second number: "); num2 = input.nextInt();
System.out.println(num1 + num2);
break;
}
}
}
什麼問題?就像更多的案例一樣。 –
看看switch語句是如何工作的,然後添加額外的例子。簡單!那麼如果你感覺冒險,那麼就用多態性來替換switch語句。 – byxor
問題是這樣的:'char op ='+',' - ','/','*';'。這不是有效的語法。你打算在那條線上做什麼? –