对于我在大学里的java课程,我需要阅读一个文本文件,其中包含高尔夫游戏的分数并将它们加在一起以达到总数。我可以很好地扫描文件的第一列,但我无法弄清楚如何读取第二,第三等列中的整数。
以下是相关方法:
public static int Total(int passed, String fileName) throws IOException {
int total = 0;
Scanner fileScan = new Scanner(new File(fileName));
for (int line = 1; line <= 18; line++) {
for(int col = passed; col == passed; col++) {
total += fileScan.nextInt();
}
}
return total;
} //End of Total Method