I've got a Fortran 95 program (which basically does few calculations) and I'd like to use it online. So that, the users will input data into a HTML form, the program will run, and it will display the results.
Would it be possible to do it in the following way?
To run a little program (e.g. PHP)...
I have a simple command-line based Fortran 95 program. I would like
my clients to be able to run it straight on the website. So that it
can be executed on the server without downloading it.
I have found out that most of the hosting packages and web browsers do not allow running .exe files on...
if (ratio < 0.2) then
WRITE(*,*) "We need mixing."
WRITE(*,*)"Please enter the data:"
WRITE(*,*)
WRITE(*,*)"Mix:"
READ(*,*)mix
WRITE(*,*)
WRITE(*,*)"Diameter:"
READ(*,*)diameter
WRITE(*,*)
WRITE(*,*)"At the flow",aflowrate(1),"m3/hr, pressure is ",ac1c2(1)
WRITE(*,*)"At the...
How do I declare constants beginning with "zero" in Fortran to get the output beginning with zero ?
If I declare :
REAL, parameter :: tension = 0.025
I get the output:
2.500000E-02
Thanks in advance
I can't figure out how to make a do-loop in Fortran to do the following:
I have 2 variables. Let's say:
REAL :: level, step
level = 2429.8
step = 1159.8
and I need 10 fields printed out.
The first field will have the value:
level + step
<then the value of the one above + step>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.