Advertisement
Mozahidul_Islam_Isty

URI 1002 Area of a Circle

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