This file contains hidden or 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
| package lesson1task1; | |
| public class ThreeWeeksCalc { | |
| public static void main(String[] args) { | |
| int second = 60; | |
| int minute = 60; | |
| int hour = 24; | |
| int day = 7; | |
| int week = 3; |