fortran中有do吗
时间: 2023-09-12 21:07:46 浏览: 94
fortran 5.0 for dos
4星 · 用户满意度95%
是的,在Fortran中有do循环。它的语法如下:
```
DO index = start, end, increment
statement(s)
END DO
```
其中,`index`是循环变量,`start`是循环起始值,`end`是循环结束值,`increment`是循环变量每次增加的值。`statement(s)`是需要执行的语句,可以是单个语句或者是代码块。
阅读全文