大家好。我把程式改成這樣
http://pastie.org/9141449#41,
大家可以幫我看看對不對嗎?謝謝!
除了本來的內容還要滿足這些條件:
輸入文件不在directory。要印出: Missing input file
輸入文件是空的或只包含空格。要印出 Empty input file.
文件中的格式錯誤。要印出:File format error.
程式裡的 int isDigit() function 是它本來就提供的。
然後還需要處理變數(不過這部分我還沒想好..),
就是如果文件裡有變數像是
X = 4;
Y = X + 3;
Z = Y + Y - X - 4;
要輸出
4;
7;
6;
X = 4;
Y = 7;
Z = 6;