URI Online Judge | 1002 Area of a Circle
Problem Link : 1002 Area of a Circle
Solution :
Develop by Samsus Salehin Sabbir
Solution :
Develop by Samsus Salehin Sabbir
- #include <stdio.h>
- int main(void) {
- // your code goes here
- double A,R;
- scanf("%lf",&R);
- A=3.14159*R*R;
- printf("A=%.4lf\n",A);
- return 0;
- }
No comments