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

2024年11月28日 08:33
有1个网友回答
网友(1):

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