Advertisement
MOHD_NASIR_UDDIN42

1002-Area of a Circle-URI Online Judge.

Apr 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     double R,sum;
  5.     scanf("%lf",&R);
  6.     sum=3.14159*R*R;
  7.     printf("A=%.04lf\n",sum);
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement