Created
November 10, 2015 03:38
-
-
Save e-tverdokhleb/4b4c2948aba79d248a11 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class main { | |
public static void main(String[] args) { | |
long millis = System.currentTimeMillis(); | |
System.out.println(millis/(24*60*60*1000L) + | |
": " + millis/(60*60*1000L) + | |
": " + millis/(60*1000L) + | |
": " + millis/(1000L)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ваш вывод: 16749: 401987: 24119221: 1447153311.
дни посчитаны правильно, а вот часы, минуты и секунды нет.