Untitled
unknown
plain_text
4 years ago
199 B
375
Indexable
#include<iostream>
#include<iomanip>
#include <cmath>
using namespace std;
int main(){
double r;
cin >> r;
cout << setprecision(3) << fixed << (r * r * M_PI)/2;
return 0;
}Editor is loading...