我想用f90的if条件语句表示1<x<2
时间: 2023-09-04 08:11:50 浏览: 122
mbpm1-2.F90
你可以使用以下代码表示1<x<2:
```fortran
if (x > 1 .and. x < 2) then
!statements to execute if condition is true
else
!statements to execute if condition is false
end if
```
在Fortran中,`.and.`表示逻辑与操作符,表示两个条件都为真时整个条件才为真。因此,上述代码中的条件只有在x大于1且小于2时才为真。如果条件为真,则执行`if`语句块中的语句,否则执行`else`语句块中的语句。
阅读全文