Posts

Pratical Helloworld

  Q1.    hello.f90 (filename.f90) program hello     implicit none     print *, "Hello World!"     pause end program     Q2.         Area.f90 PROGRAM circle_area IMPLICIT NONE !reads a value representing the radius of a circle, !then calculates and writes out the area of the circle. REAL :: radius, area REAL, PARAMETER :: pi=3.141592 READ (*,*) radius area = pi*radius*radius WRITE (*,*) area pause END PROGRAM circle_area   Q3. Areacircle.f90 program Calc real :: radius,area real, parameter :: pi = 3.14   print *, "enter ratdius" read *, radius   area = pi * radius **2   print *, area pause end program Calc  

URL PDF

 https://www.uobabylon.edu.iq/eprints/paper_10_18437_553.pdf https://iopscience.iop.org/article/10.1088/1742-6596/1804/1/012050/pdf https://force.lepsch.com/2013/12/challenge-1-difficult.html

Download Software

 https://www.lepsch.com/downloads/Force209GFortranSetup.exe Download Force 2.0.9 + GNU Fortran (GFortran) Force209GFortranSetup.exe  (10.6MiB) Force 2.0.9 + G95 Fortran (G95) Force209G95Setup.exe  (3.55MiB) Force 2.0.9 + GNU Fortran 77 (G77) Force209G77Setup.exe  (2.03MiB) Force 3.0 b3 + GNU Fortran 77 (G77) Force3beta3Setup.exe  (2.19MiB) For old binaries, extensions, translations and samples please follow: Old Downloads