在Linux系統中,使用gfortran編譯器處理Fortran程序的輸入輸出時,可以遵循以下步驟:
program main
implicit none
integer :: a, b, c
! 從標準輸入讀取兩個整數
read(*, *) a, b
! 計算兩數之和
c = a + b
! 將結果輸出到標準輸出
write(*, *) "The sum of", a, "and", b, "is", c
end program main
gfortran -o main main.f90
這將生成一個名為main
的可執行文件。
./main
3 5
The sum of 3 and 5 is 8
在Fortran程序中,你可以使用read
和write
語句來處理輸入輸出。read
語句從標準輸入(通常是鍵盤)讀取數據,而write
語句將數據輸出到標準輸出(通常是屏幕)。你還可以使用文件I/O來處理輸入輸出,但這需要更復雜的操作。