回 帖 发 新 帖 刷新版面

主题:一个错误

run-time error M6203: MATH  
- exp: OVERFLOW error  
Image              PC        Routine            Line        Source              
top.exe            00410799  Unknown               Unknown  Unknown 

程序是这样提示的,我看不懂是什么意思,大侠们帮帮忙啊。

回复列表 (共3个回复)

沙发

exp 太大了。

比如 exp(10000000000000000)

板凳


谢谢你了,再帮我看看这个是怎么回事啊
forrtl: severe (161): Program Exception - array bounds exceeded  
Image              PC        Routine            Line        Source              
top.exe            0040332D  INIT                      530  single.FOR

3 楼

数组越界,比如

real a(10)

而你

write(*,*) a(11)

或者

Do i =  1, 11
  write(*,*) a(i)
End Do

我来回复

您尚未登录,请登录后再回复。点此登录或注册