Guest User

Untitled

a guest
Jul 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class Surtur {
  2.  
  3. public static void main(String[] args) {
  4. // TODO Auto-generated method stub
  5. long x = System.currentTimeMillis()/1000;
  6. long D = x/3600/24;
  7. long H = x/3600-D*24;
  8. long M = x/60-x/3600*60;
  9. long S = x-(D*3600*24+H*3600+M*60);
  10. System.out.println(D+":"+H+":"+M+":"+S);
  11. }
  12. }
Add Comment
Please, Sign In to add comment