📜  fortran elseif 语句 - Fortran 代码示例
📅  最后修改于: 2022-03-11 15:01:04.855000             🧑  作者: Mango
代码示例1
if(condition1)then
! do this if condition1 is true
else if(condition2)then
! else do this if condition2 is ture
endif