SOLUTION OF URI 1019 URI SOLUTIONS // question of uri 1019 Time Conversion // 1019 (Mahmud_Jamil) BRUR #include <stdio.h> #include <math.h> int main() { int a,b=3600,x=60,c,d,e,f; scanf("%d",&a); c=a/b; d=a%b; e=d/x; f=d%x; printf("%d:%d:%d\n",c,e,f); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts:SOLUTION OF URI 1021 // question of uri 1021 Banknotes and Coins &nbs… Read MoreSOLUTION OF URI 1020// question of uri 1020 Age in Days // 1020 (Mahmud_Jamil) BRU… Read MoreSOLUTION OF URI 1018 // question of uri 1018 Banknotes //1018 (Mahmud_Jamil) BRUR #i… Read MoreSOLUTION OF URI 1019 // question of uri 1019 Time Conversion // 1019 (Mahmud_Jamil) BRUR … Read MoreSOLUTION OF URI 1035 // question of uri 1035 Selection Test 1 // 1035 (Mahmud_Jamil) BRUR #… Read More