I am a dummy in Fortran 77 and have always been a C++ coder, but I have to modify a code from years long ago...
I\'m rewriting some legacy code and came across this: DO 4 I=1,N ... DO 4 J=1,N ... 4 CONT开发者_StackOverflowINUE
I\'m working with an old FORTRAN 77 program, and I\'ve encountered a bizarre bug.As-is, the code appears to run fine, and finishes in less than a second.But it produces a bunch of extraneous output th
I\'m attempting to compile some complete Fortran code developed by someone else.The makefile makes references to CC, F77 and F90.Our server doesn\'t have F90 on it, but I could probably ask for it if
What is the relatio开发者_StackOverflow社区n of g77/gfortran and f2c today? Is there still development going on? Is one benefiting from the others advances (like bugs and performance)?
Quick question: Is it possible to declare one array with integers and floats in Fortran 77? If yes, 开发者_开发技巧how?
Can anyone tell me how to install f开发者_如何学C77 on Mac OS X 10.6? I am quite new to f77. Thank you very muchSo the compiler you\'re looking for is gfortran, part of the gcc suite.Gfortran will co
I\'m relatively new to programming, and I\'m currently trying to write a program using Fortran 77 that will use the Runge-Kutta method of equation solving to determine the temperature of a spherical b
I am trying to write a program to solve a quadratic equation.If开发者_高级运维 the value of (B**B-4*A*C) is 0 or negative, it should immediately write that \"The roots of the equation is complex\", bu
I have a Fortran 77 application that uses Common declarations to \"share\" memory variables.Back in the day, when memory was expensive and hard to come by this was the way around it.