Skip to content

Commit

Permalink
1002 C
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPLopes committed Dec 17, 2019
1 parent ced2be3 commit cda0b86
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions C/1002.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>

int main() {
double pi=3.14159, r,A=0;
scanf("%lf",&r);
A= r*r*pi;
printf("A=%.4lf\n",A);

return 0;
}

0 comments on commit cda0b86

Please sign in to comment.