Please read the guide .
Please answer the question in detail
#include <iostream> int main() { 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; }
Doubtly is an online community for engineering students, offering:
Get the pro version for free by logging in!
5.7k questions
5.1k answers
108 comments
554 users