#include int main() return 0; No related posts. Related posts brought to you by Yet Another Related Posts Plugin.
#include
{
double radius;
//get user input
cout<<"Please enter the radius : ";
cin>>radius;
//act on user input
if(radius < 0.0)
cout<<"Cannot have a negative radius"<
cout<<"The area of the circle is "<<3.1416 * pow(radius,2)<
}
























