程序运行出现错误: FORTRAN中的错误forrtl:severe<161>:Program Exception-array bounds exceeded

附程序:
2025-02-27 12:40:25
推荐回答(1个)
回答1:

这是数组越界。很常见的错误

比如
real :: a(100)
write(*,*) a(101)