-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGaddisChallenges.java
More file actions
38 lines (27 loc) · 836 Bytes
/
GaddisChallenges.java
File metadata and controls
38 lines (27 loc) · 836 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
34
35
36
37
38
import java.util.Scanner;
/*
future additions:
- threading
- GUI
*/
public class GaddisChallenges {
private Scanner scan = new Scanner(System.in);
public static void main(String[] args) {
print("Starting Chapter 3 Challenges from the Gaddis book!");
print("Question 1: Roman Numeral Converter");
RomanNumeralConverter rmc = new RomanNumeralConverter();
rmc.start();
print("Question 2: Magic Dates");
MagicDates mc = new MagicDates();
mc.start();
print("Question 3: Body Mass Index");
BMI bmi = new bmi BMI();
bmi.start();
print("Question 4: Test Scores and Grade");
LetterGrades lg = new LetterGrades();
lg.start();
}
private void print(String text) {
System.out.println(text);
}
}