//prg to accept radius and produce area
//Downloaded From www.c4cpp.co.nr. (C)2009.All rights reserved.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float r,ar;
cout<<"Enter radius"<<endl;
cin>>r;
ar =(22/7)*r*r;
cout<<"Area = "<<ar;
getch();
}
Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]
Accept Radius & Produce Area
Click Here To Download C++ File Of This Program
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment