1
を読んだ後にEOF条件をご確認くださいファイルからの読み込み、あなたは...前または擬似コードを使用して
aFile = open("file.txt")
//x = aFile.readLine() <- reading before checking end of file condition
while !aFile.endOfFile()
//x = aFile.readLine() <- only read if you have not already read
from the file before the loop
print(x)
//x = aFile.readLine() <- if reading before checking end of file,
you will read again after printing the previous x value
end while
aFile.close()
私の質問は、あなたがENDOFFILE条件が成立確認することができます前に、ファイルから読み込む必要があるだろう、ですfalseか、ファイルから読み込む前に条件をチェックしますか?