Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Compile and Execute FORTRAN-95 Online

program ex2
! this program calculates arithmetic average of 5 numbers
real::a,b,c,d,e,mean
read*,a,b,c,d,e
mean=(a+b+c+d+e)/5
print*,'a=',a
print*,'b=',b
print*,'c=',c
print*,'d=',d
print*,'e=',e
Print*,'the total arithmetic mean=',mean
end program ex2

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.