Solution of 1002

 

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;
}

Post a Comment

Previous Post Next Post