1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | !author:Md. Abde Mannaf !The program finds area,circumference and vol of a circle program area_vol implicit none real::area,cir,vol,r real,parameter::pi=3.1416 print*,'Enter the value of radus=' read*,r area=pi*r**2 vol=(4.0/3.0)*pi*r**3 cir=2*pi*r print*,'area of the circle=',area print*,'volume of the circle=',vol print*,'circumference of the circle=',cir end program area_vol |
Tuesday, March 31, 2015
Write a Fortran program & finds area,circumference and vol of a circle
Subscribe to:
Post Comments (Atom)
When did circle have a volume
ReplyDelete