SOLUTION OF URI 1541 URI SOLUTIONS // Solution of 1541 Building Houses // (Mahmud_Jamil) BRUR #include <stdio.h> int main() { int a,b,c,d,e,f,g,h; while(1) { scanf("%d", &a); if(a==0) break; else { scanf("%d%d", &b,&c); d=a*b; e=(d*100)/c; f=pow(e,.5); printf("%d\n",f); } } return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook