#include<iostream>
#include<cmath>
using namespace std;
int main()
{
float r ;
cout<<"\n \t Enter the radius of Circle : " ;
cin>>r;
cout<<" \n\n\n \t \t **********************************\n\n\n";
cout<<"\n\n The area of circle is = ";
cout<< (M_PI*r*r)<<endl;
cout<<"\n\n The area of circle is = ";
cout<<((M_PI)*pow(r,2));
cout<<"\n\n The area of circle is = ";
cout<<((22/7)*r*r);
cin.get();
return 0 ;
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)