Posts

Showing posts with the label URI 1002

URI 1002

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