SOLUTION OF URI 1002 URI SOLUTIONS // question of uri 1002 Area of a Circle //1002 (Mahmud_Jamil) BRUR #include<stdio.h> int main() { double R,pi,A; scanf("%lf",&R); pi=3.14159; A=pi*R*R; printf("A=%.4lf\n",A); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts:SOLUTION OF URI 1789 // Solution of 1789 The Race of Slugs // (Mahmud_Jamil) BRUR #in… Read MoreSOLUTION OF URI 1101 // 1101 (Mahmud_Jamil) BRUR // Sequence of Numbers and Sum #include <stdio.h>int main(){ in… Read MoreSOLUTION OF URI 1958 // Solution of 1958 Scientific Notation // (Mahmud_Jamil) BRUR … Read MoreSOLUTION OF URI 1131 // 1131 (Mahmud_Jamil) BRUR // Grenais #include <stdio.h>int main(){ int a,b,c=0,d=0,e=0,f,g,h… Read MoreSOLUTION OF URI 1154 // 1154 (Mahmud_Jamil) BRUR // Ages #include <stdio.h>int main(){ int a,b=0; d… Read More