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