我必須打印此文件的「文本」的偶數行,我該怎麼做?練習掃描文件
public static void main(String[] args) throws FileNotFoundException{
File f =new File("text.txt");
Scanner scanner = new Scanner(f);
while(scanner.hasNextLine()){
System.out.println(scanner.nextLine());
}
}
謝謝。
'if(lineNumber%2 == 0)''那麼它是偶數行。你只需要一個計數器變量或某種方式來跟蹤你到目前爲止看過多少行。 – csmckelvey
使用'%'很簡單,重點是自己嘗試一下,就像做練習一樣。你只需要添加2-3行代碼。 :) –