-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMagicDates.java
More file actions
46 lines (37 loc) · 1.34 KB
/
MagicDates.java
File metadata and controls
46 lines (37 loc) · 1.34 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
public class MagicDates extends GaddisChallenges {
private int userMonth;
private int userDay;
private int userYear;
private int[] numDaysInMonth = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
public void start() {
print("Ready for some magic? Let's see if you can guess a Magic Date! ");
print("Enter a numerical value for a month: (Example: 1 for January");
int tempMonth = scan.nextInt();
if(tempMonth > 0 && <= 12) {
userMonth = tempMonth;
}
else {
print("You entered a value that is out of range");
}
print("Enter a day in the month: (Example: 15 for the 15th of the month");
tempDay = scan.nextInt();
if (tempDay > 0 && <= numDaysInMonth[userMonth - 1]) {
userDay = tempDay;
}
else {
print("That day is invalid");
}
print("Enter a two-digit year: (Example: 08 for 2008");
tempYear = scan.nextInt();
if (tempYear.toString().length() == 2) {
userYear = tempYear;
}
if (calculateMagic()) {
print("Hooray! You chose a Magic Date! " +
userMonth " * " + userDay + " = " + userYear)
}
}
private void calculateMagic() {
return (userMonth * userDay == userYear);
}
}