f90check.f90 234 B

123456789101112
  1. program f90check
  2. integer :: i = 258
  3. real :: r = 1.0
  4. open(21,file='F90_INTEGER',form='unformatted')
  5. write (21) i
  6. close(21)
  7. open(21,file='F90_REAL',form='unformatted')
  8. write (21) r
  9. close(21)
  10. !call csub(i,r)
  11. stop
  12. end program f90check