0

重複の可能性:
nextInt の後に nextLine を使用する場合のスキャナーの問題

以下は私のコードです:

import java.util.Scanner;

public class Test{
    public static void main(String args[])
    {
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        StringBuilder sb=new StringBuilder();
        int count=0;
        for(int i=0;i<n;i++)
        {
            count++;
            sb.append(sc.nextLine());
            sb.append("\n");
        }
        System.out.println(sb);
        System.out.println(count);

    }
}

i==n-1変数が最後countに等しいのに、ループの最後の実行、つまり when の入力を書き込むことができませんn。エラーはどこにありますか?

4

0 に答える 0