SOLUTION OF URI 1156 URI SOLUTIONS No comments // 1156 (Mahmud_Jamil) BRUR // S Sequence II #include <stdio.h>int main(){ double a,b=1,c, S=0; for(a=1; a<=39; a+=2) { c=a/b; S+=c; b*=2; } printf("%.2lf\n",S); return 0;} Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts:SOLUTION OF URI 1160 // 1160 (Mahmud_Jamil) BRUR // Population Increase #include <stdio.h>int main(){ int n, c, … Read MoreSOLUTION OF URI 1096 // 1096 (Mahmud_Jamil) BRUR // Sequence IJ 2 #include<stdio.h>int main(){ int i,j; … Read MoreSOLUTION OF URI 1182 // 1182 (Mahmud_Jamil) BRUR // Solution of Column in Array #include <stdio.h> int main() { do… Read MoreSOLUTION OF URI 1142 // 1142 (Mahmud_Jamil) BRUR // PUM #include<stdio.h>int main(){ int N,i… Read MoreSOLUTION OF URI 1118 // 1118 (Mahmud_Jamil) BRUR // Several Scores with Validation #include <stdio.h>int main(){ dou… Read More
0 comments:
Post a Comment