New to Fortran, questions about writing to file

后端 未结 4 703
慢半拍i
慢半拍i 2020-12-21 19:35

I am completely new to Fortran and pretty new to programming in general. I am trying to compile a script someone else has written. This is giving me a few problems. The top

4条回答
  •  失恋的感觉
    2020-12-21 20:06

    110 is the error code thrown by the WRITE call. You need to check your FORTRAN RTL (run-time library) reference. It should list the possible error codes. I think 110 means that you're trying to convert a double-precision value to an integer, but the value is bigger than you can store in an integer. Maybe dump the values in DB and see.

提交回复
热议问题