Advertisement
iPsych0

URI 1019

Jul 3rd, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int n;
  6.     while(cin>>n)
  7.     {
  8.         int hour=0;
  9.         int minutes=0;
  10.         int seconds=0;
  11.  
  12.         hour= n/3600;
  13.         n= n- (hour*3600);
  14.         minutes= n/60;
  15.         seconds= n%60;
  16.  
  17.         cout<<hour<<":"<<minutes<<":"<<seconds<<endl;
  18.     }
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement