World Languages, asked by silentkiller5920, 7 months ago

Find Area of Circle using c++ program​

Answers

Answered by YashodharPalav5109
10

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;

Similar questions