SIMPLE PROGRAMS
3: FORTRAN 77 program to find the Area and Circumference of Circle.
real
rad,cir,area
pi=3.14
read(*,*)rad
cir=2*pi*rad
area=pi*rad**2
write(*,*)'Circumference
= ',cir
write(*,*)'Area = ',area
stop
end
0 Comments