forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path38_javaBeginners.java
More file actions
33 lines (26 loc) · 894 Bytes
/
38_javaBeginners.java
File metadata and controls
33 lines (26 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class apples {
public static void main(String[] args) {
tuna tunaObject = new tuna();
System.out.println(tunaObject.toMilitary());
System.out.println(tunaObject.toString());
tunaObject.setTime(13, 27, 6);
System.out.println(tunaObject.toMilitary());
System.out.println(tunaObject.toString());
}
}
public class tuna {
private int hour = 1;
private int minute = 2;
private int second = 3;
public void setTime(int hour, int minute, int second){
this.hour = 4;
this.minute = 5;
this.hour = 6;
}
public String toMilitary(){
return String.format("%02d:%02d:%02d", hour, minute, second);
}
public String toString(){
return String.format("%d:%02d:%02d %s", ((hour==0||hour==12)?12:hour%12), minute, second, (hour < 12?"AM": "PM"));
}
}