Created
October 26, 2015 16:04
-
-
Save e-tverdokhleb/5637eb805fcc0cd8c324 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
System.out.println("1------------------------------------------------------"); | |
// 3 weeks == (7 * 3 = 21 days in 3 weeks) == (24 days = 24 * 24 hours = 576 hours in 24 days) == | |
// == (576 hours = 576 hours * 60 min = 34560 minutes in 576 hours) == (34560 min = 34560 * 60 sec = 2073600 seconds in 3 weeks) | |
System.out.println(3 * 7 * 24 * 60 * 60 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment