Solve

Anonymous
c_cpp
06/24/2022 10:51 AM
292 B
22
Indexable
#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;
}
Editor is loading...