-1
我一直試圖將這個文件轉換成Fortran並輸出並格式化數據,但是我不斷收到有關The Runtime請求被終止或什麼的消息。在Fortran中讀取文件
Real X
Real AVG, SUM, Y
open(3, File = 'C: test.txt')
open(5, File = 'C: test1.out')
SUM = 0.
Do 29, J = 1, 30
Read(3, 60) X
60 Format(2x, F4.2)
SUM = SUM + X
29 continue
AVG = Sum/30
write(5, 65) AVG
65 Format(2x, 'Avg = ', F8.2)
* Read *, Y
Stop
End
這是什麼操作系統?如果這是Windows,你不應該有'c:\ test.txt'這樣的文件路徑嗎?發佈問題時,最好包含完整且準確的錯誤消息。 – milancurcic 2012-02-06 04:43:57