CBSE BOARD XII, asked by shh2119487neha, 8 months ago

Write a program in c++to calculate area of circle using class

Answers

Answered by dasarisahiti2416
6

Answer:

C++ Program to Compute the Area of Circle

* C++ Program to Compute the Area of Circle.

float radius, area;

std::cout << "Enter the radius of circle : ";

std::cin >> radius;

area = 3.14 * radius * radius;

std::cout << "Area of circle with radius "

<< radius << " is " << area;

Answered by pratikborle74
1

Answer:

guys plz thank my all answer plz plz plz guys

Similar questions