hi, everybody. I am new user F77 in Linux. I start using operator DO and I have message: At line 4 of file test.f (unit = 5, file = 'stdin')
Fortran runtime error: Bad real number in item 1 of list input. Can you help me, What is problem?
Very simple
B=0.0
DO 10 I=1,3
READ*,A
B=B+A
10 CONTINUE
PRINT*,B
END