Upload files to "OOP/Java/Lab/Week5"

This commit is contained in:
Aadit Agrawal 2024-09-02 02:51:28 +05:30
parent fe4d8de081
commit 0589cce66a
3 changed files with 36 additions and 12 deletions

View file

@ -8,7 +8,7 @@ public class Time {
// initializing to zero
hr = 0;
min = 0;
min = 0;
sec = 0;
}
Time(int hour, int minute, int second) {