Program to find the area and circumference of the circle

#include<iostream>
#include<math.h>
#define PI 3.14
using namespace std;
int main()
{
    float area,circum,r;
    cout<<"Enter the radius\n";
    cin>>r;
    area=PI*pow(r,2.0);
        cout<<"The area Of the circle is:"<<area<<endl;
    circum=2*PI*r;
        cout<<"The circumfrence Of the circle is:"<<circum<<endl;
        cout<<"/*\nName-Sanjampreet Singh\nRoll Number-1507967\n*/";
return 0;
}

Output:


Comments

Popular posts from this blog

Program to illustrate the concept of templates.

To create an html file to implement the concept of margin, padding using cascading style sheets.

To configure the IP address for a computer connected to LAN