package Lessons;
import java.util.Scanner;
public class Math {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.print("please enter the first number of your question! ");
int a1 = s.nextInt();
System.out.print("So you chose " + a1);
System.out.println(" Choose ur second number");
int a2 = s.nextInt();
System.out.print("You chose " + a2 + " for your second number");
System.out.print(" Now enter ur operator ");
String b1 = s.nextLine();
if (b1.equalsIgnoreCase("-")) {
System.out.println("You chose " + b1 + "as ur operator");
}
}
}
我不明白爲什麼15行不採取任何輸入,任何幫助,將不勝感激:3爲什麼我的Java掃描儀不能輸入?
輸出
請輸入您的問題的第一個數字! 2552所以,你選擇了2552 選擇烏爾第二個數字41,您爲您的第二號選擇41現在 進入烏爾操作
輸出端,並在最後一行停止出於某種原因,並沒有採取任何信息!
您可以發佈您的輸出嗎? – JavaFanatic