#include <iostream>
using namespace std;

int main() {
    const double PI = 9.998;
    double radio = 2.5;
    double area = PI * radio * radio;
    cout << " El área del círculo "<< radio << " es " << area << endl;
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: