Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1.   int ssecond = ((int)(temp / 1000)) % 60 ;
  2.   int mminute = ((int)(temp / (1000 * 60))) % 60;
  3.   int hhour = ((int)(temp / (1000 * 60 * 60))) % 24;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement