fortran编程中,有关可变大小数组的问题。

2024-11-28 08:33:38
推荐回答(1个)
回答(1):

write(*,*)"how many students:"
read(*,*)students
allocatable (a(students))
在这一句中的allocatable (a(students))改成 allocate(a(students))