Fortran教學
Fortran語言環境設置
Fortran基本語法
Fortran數據類型
Fortran變量
Fortran常量
Fortran運算符
Fortran算術運算符
Fortran關係運算符
Fortran邏輯運算符
Fortran運算符優先級
Fortran選擇決策
Fortran if...then語句結構
Fortran if...then...else 結構
Fortran if...else if...else 語句
Fortran嵌套if結構
Fortran select case結構
Fortran嵌套select case結構
Fortran循環
Fortran do循環結構
Fortran do...while循環結構
Fortran嵌套循環
Fortran exit語句
Fortran Cycle語句
Fortran Stop語句
Fortran數字
Fortran字符
Fortran字符串
Fortran數組
Fortran向量和矩陣乘法函數
Fortran還原功能
Fortran查詢函數
Fortran構造函數
Fortran重塑函數
Fortran操作函數
Fortran位置函數
Fortran動態數組
Fortran導出數據類型
Fortran指針
Fortran基本輸入輸出
Fortran文件輸入輸出
Fortran過程
Fortran模塊
Fortran內部函數
Fortran數字精度
Fortran編程風格
Fortran調試程序
Fortran if...then...else 結構
if… then 語句可以後跟一個可選的 else 語句, 它執行時,邏輯表達式爲假。
語法
if… then… else 的基本語法:
if (logical expression) then statement(s) else other_statement(s) end if
但是,如果給定 if 塊一個名字,然後命名 if-else 語句的語法是,這樣的:
[name:] if (logical expression) then ! various statements . . . else !other statement(s) . . . end if [name]
如果邏輯表達式的計算結果爲代碼裏面的 if ... then 語句會被執行,對 else 塊中的代碼,否則該塊將被執行 else 塊。
流程圖
示例
program ifElseProg implicit none ! local variable declaration
integer :: a = 100 ! check the logical condition using if statement if (a < 20 ) then ! if condition is true then print the following print*, "a is less than 20" else print*, "a is not less than 20" end if print*, "value of a is ", a end program ifElseProg
當上述代碼被編譯和執行時,它產生了以下結果:
a is not less than 20 value of a is 100