f90的if条件语句
时间: 2023-07-24 10:18:52 浏览: 128
ec.f90.tar.gz_eC
在Fortran 90中,if条件语句有以下语法:
```fortran
if (condition) then
!statements to execute if condition is true
else if (condition2) then
!statements to execute if condition2 is true
else
!statements to execute if all conditions are false
end if
```
其中,`condition`和`condition2`是要判断的条件,如果它们为真,就会执行相应的语句。如果条件不为真,则跳过相应的语句。`else if`和`else`语句是可选的,可以根据需要选择使用。`else if`语句用于在上一个条件为假的情况下测试一个新的条件,而`else`语句用于在所有条件都为假的情况下执行一些语句。注意,在Fortran中,每个语句必须以一个`end if`结尾,否则编译器会报错。
阅读全文