1002 - Area of a Circle #include <stdio.h> int main() { double A,R; scanf("%lf",&R); printf("A=%.4lf\n",R*R*3.14159); return 0; }
No comments: