#include using namespace std; int main() { float pi = 3.1415926535F; float r; cout << "Enter the radius of the circle: "; cin >> r; cout << "The area of the circle is: " << pi * (r * r) << endl; }