11 lines
153 B
C++
11 lines
153 B
C++
|
#include <cstdio>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
double pi = 3.14159, r;
|
||
|
scanf("%lf", &r);
|
||
|
printf("A=%.4f", pi * r * r);
|
||
|
return 0;
|
||
|
}
|