Untitled

Anonymous
plain_text
07/31/2021 9:54 AM
268 B
389
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...