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

Calculate the value of y using Fortran

program ex18a
! this program calculate the value of y
integer::x,y
read*, x
if (x>2) then
y = -2+3*x
else
y = 8+x**2
end if 
print*, y
end program ex18a

Advertisements
Loading...

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