Fortran do循环
时间: 2023-06-23 17:00:26 浏览: 140
fortran循环
Fortran中的do循环可以使用do或do-while语句来实现。其中,do语句的形式如下:
```
do index = start, end, step
! 代码块
end do
```
其中,index为循环计数器,start为起始值,end为终止值,step为步长。代码块会在每次循环时执行,循环次数为(end-start)/step。
do-while语句的形式如下:
```
do while (condition)
! 代码块
end do
```
其中,condition为循环条件,代码块会在每次循环前先判断condition是否为真,如果为真则执行代码块,直到condition为假为止。
阅读全文