Solve

mail@pastecode.io avatar
unknown
c_cpp
2 years ago
218 B
2
Indexable
Never
#include <stdio.h>
#include <math.h>
#include <stdio.h>
int main() {
 
    double raio, area;
 
    scanf("%lf", &raio);
    area = 3.14159 * pow(raio,2);
    
    printf("A=%.4lf\n", area);
    return 0;
}