First try it yourself
#include <stdio.h>
int main() {
double R, A;
double n=3.14159;
scanf("%lf", &R);
A=n*R*R;
printf("A=%.4lf\n", A);
return 0;
}
Tags:
Beecrowd