2

重複の可能性:
java.util.Scanner : コード内の nextLine() がプロンプトを表示しないのはなぜですか?

import java.util.Scanner;

class apples {
public static void main(String args[]){
        Scanner npwn = new Scanner(System.in);
        int first,second,answer;
        String op;
        System.out.print("Insert first number: ");
        first = npwn.nextInt();
        System.out.print("Insert Operation ('+', '-', '*', '/')");
        op = npwn.nextLine();
        if (op.equals("+")) {
            System.out.print("Insert next number: ");
            second = npwn.nextInt();
            answer = first + second;
        } 
        else { System.out.print("Insert next number: ");
        second = npwn.nextInt(); 
        answer = first - second;

        }
        System.out.println(answer);
}
}

「op:nextLine();」と書かれているところ。一時停止せず、「nextLine」のメッセージを待ちます。「次の番号を挿入:」をスキップして出力するだけです。どうしてこれなの?

4

0 に答える 0