他の場所に保存した .txt ファイルの最後の行がこのループで印刷されないのはなぜですか? 最後の行を除くすべての行を出力します。
int count = 0;
Courses[] POS = new Courses[26];
while (scan.hasNext())
{
POS[count] = new Courses(scan.nextLine());
System.out.println(POS[count]);
scan.nextLine();
count++;
}