我是fortran的新手,我試圖將其作爲輸出執行。編譯並執行代碼後沒有輸出
program write2file
implicit none
! open file
open (10, file='output_file.txt', status='unknown')
! write to file
write(10, *) 'Hello World!'
! close file
close(10)
end program write2file
我在Linux上運行它,我試圖用這個語句來編譯和執行的輸出,但不幸的是,我沒能得到「output_file.txt」
不任何人都知道什麼是錯的?
你是如何編譯它的?它的工作原理和運行良好,我的Linux機器上都有gfortran和ifort。當你運行它時是否有錯誤? – tpg2114
我用ifort命令輸出hi.f90來編譯。沒有觀察到錯誤。事實上,還有另一個文件是'輸出',但我完全不理解輸出。我想它應該給我'output_file.txt'? – user1204868
@HighPerformanceMark,我已經試過你的方法,它仍然是一樣的。這是由於我執行它的方式嗎? 'ifort -o輸出hi.f90'? – user1204868