Fortran if-else if-else 语句

if 语句可以有一个或多个可选的 else if。如果 if 条件失败,则执行紧随其后的 else if。当 else if 也失败时,执行其后续 else if 语句(如果有的话),依此类推。

可选的 else 放在末尾,当上述条件均不成立时执行。

  • 所有其他语句(else ifelse)都是可选的。
  • 否则,如果可以使用一次或多次。
  • else 必须始终放置在构造的末尾,并且只应出现一次。

if…else if…else 语句的语法是:

  1. [name:]
  2. if (logical expression 1) then
  3. ! block 1
  4. else if (logical expression 2) then
  5. ! block 2
  6. else if (logical expression 3) then
  7. ! block 3
  8. else
  9. ! block 4
  10. end if [name]
实例
  1. program ifElseIfElseProg
  2. implicit none
  3. ! local variable declaration
  4. integer :: a = 100
  5. ! check the logical condition using if statement
  6. if( a == 10 ) then
  7. ! if condition is true then print the following
  8. print*, "Value of a is 10"
  9. else if( a == 20 ) then
  10. ! if else if condition is true
  11. print*, "Value of a is 20"
  12. else if( a == 30 ) then
  13. ! if else if condition is true
  14. print*, "Value of a is 30"
  15. else
  16. ! if none of the conditions is true
  17. print*, "None of the values is matching"
  18. end if
  19. print*, "exact value of a is ", a
  20. end program ifElseIfElseProg

结果为:

  1. None of the values is matching
  2. exact value of a is 100

分类导航