I have been trying to understand a FORTRAN code, which has the following expression:
var=1.e12
What is the meaning of this expression and its equivalent in FORTRAN 90/95
I have been trying to understand a FORTRAN code, which has the following expression:
var=1.e12
What is the meaning of this expression and its equivalent in FORTRAN 90/95
Elementary, my dear Watson:
1.e12
is a floating point numeral; in this case, it's value is 1.0 * 10^12
.
its equivalent in fortran90
Um, I think that's valid f90.