什么是“公交车错误”?
|
什么是“公交错误?”
下面是我的代码。
非常感谢您的宝贵时间!
PROGRAM numbersgen
IMPLICIT NONE
!Variable declaration
INTEGER, DIMENSION(:,:),ALLOCATABLE::numarray
INTEGER, DIMENSION(:),ALLOCATABLE::temparray
INTEGER:: numrolls, numexps
INTEGER:: i=0, j=0
REAL:: avg=0, sdv=0, variance=0, sum=0
INTEGER:: k, min, pos, temp
PRINT*, \"Enter the number of experiments to simulate: \"
READ*, numexps
PRINT*, \"Enter the number of rolls per experiment: \"
READ*, numrolls
ALLOCATE(numarray(numexps,numrolls))
-----
ALLOCATE(temparray(numrolls))
-----
END PROGRAM
没有找到相关结果
已邀请:
3 个回复
芦歉竭皑
铰齐插
苏髓骗撩
并删除第二个
。 要下次自己调试,请使用
选项进行编译,如下所示:
并在调试器下运行它:
然后它将为您提供崩溃的位置。