Type * error in gfortran

后端 未结 1 1323
一生所求
一生所求 2021-01-28 08:50

When I run my code I get the following error for all the statements that have the following format. Is there any problem with the type statement? If yes kindly provide me with a

相关标签:
1条回答
  • 2021-01-28 09:33

    Type is an obsolete and completely non-standard statement (see http://docs.oracle.com/cd/E19957-01/805-4939/6j4m0vnbi/index.html). It is not portable because many compilers do not recognize it. It should be changed to a PRINT statement, as @francescalus suggest in the comment.

    print *,'enter back-azimuth limits ib1,ib2 (integers!)'
    
    0 讨论(0)
提交回复
热议问题