我收到运行时错误:Bad real number in item 1 of list input
对于这个示例问题。请提出正确的方法。
implicit double precision (a-h,o-x)
parameter (ni=150)
dimension x(ni)
open(40,file='fortin')
do 80 i=1,5
read(40,*)x(i)
write(*,*)i,x(i)
80 continue
stop
end
文件中的数据fortin
按列排列
1.0
5.0
3.0
5.0
7.0