Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: alleyor
  • Content: Threads
  • Order by date
  1. alleyor

    two subroutines

    There is an old program. In addition to subroutine “storr” and subroutine “scribe”, others can be compilered and obtain accurate results . Please help me revise these two subroutines, thank you ! I'm using IVF9 for windows. The source code and the input file see Annex.
  2. alleyor

    CALL SECOND(FIRST)

    PROGRAM puf ... CALL SECOND(FIRST) ... END PROGRAM When this program is compilered in ivf9 for windows,it will be a error:unresolved symbol _second@4. I think it need the source code of "second.f".where can I get it? or How to replace it? There is a...
  3. alleyor

    scale-of-eight

    INTERGER H IF (H(J,2).GT.0.AND.H(J,2).LT.77B) GO TO 550 This sentence can't be compilered in ivf9. "IF (H(J,2).GT.0.AND.H(J,2).LT.O'77') GO TO 550" (1) OR "IF (H(J,2).GT.0.AND.H(J,2).LT.63) GO TO 550", (2) WHICH IS CORRECT? OR OTHER? AND THIS ONE. IF ((NN(I)...
  4. alleyor

    buffer in and buffer out

    PROGRAM bufferedIoTest ! buffered i/o example: compile with +autodbl INTEGER a(10) OPEN ( UNIT = 7, NAME = ’test.dat’, FORM = ’UNFORMATTED’ ) a = (/ (i,i=1,10) /) ! initialize the array A BUFFER OUT ( 7, 0 ) ( a, a(10) ) ! write out A twice CALL unit ( 7 )...

Part and Inventory Search

Back
Top