🤨Fortran--if代码块
2019-03-25 本文已影响0人
YI_YI_
#######1: if...then...end if
program ifProg
implicit none
integer :: a = 10
if(a < 20) then
print *,"a is less than 20"
end if
read *
end program ifProg
结果
