-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCh13Ex1to4.java
More file actions
139 lines (123 loc) · 3.4 KB
/
Ch13Ex1to4.java
File metadata and controls
139 lines (123 loc) · 3.4 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import java.util.*;
/**
* Chapter 13 - Single-branch if Statements Programming Exercises 1-4
*
* @author TODO Your Name
* @version TODO Date
*
* @author Period - TODO Your Period
* @author Assignment - Ch13Ex1to4
*
* @author Sources - TODO list collaborators
*/
public class Ch13Ex1to4
{
Scanner scan;
/**
* Constructs a Scanner for input from the console.
*/
public Ch13Ex1to4()
{
scan = new Scanner( System.in );
}
/**
* Constructs a Scanner to evaluate passed input (used for testing).
*
* @param str input for the various methods
*/
public Ch13Ex1to4( String str )
{
scan = new Scanner( str );
}
/**
* TODO Description
*/
public void internetDelicatessen()
{
// TODO Your code goes here
System.out.println("Enter the item: ");
String item;
item = scan.nextLine();
System.out.println("Enter the price: ");
int price;
price = scan.nextLine();
}
/**
* TODO Description
*/
public void steamEngineEfficiency()
{
// TODO Your code goes here
}
/**
* TODO Description
*/
public void microwaveOven()
{
// TODO Your code goes here
}
/**
* TODO Description
*/
public void fantasyGame()
{
// TODO Your code goes here
}
/**
* Testing method: instantiates a Lesson15Exercises object and then invokes
* each method.
*
* @param args command line parameters (not used)
*/
public static void main( String[] args )
{
Scanner kbd = new Scanner( System.in );
boolean done = false;
Ch13Ex1to4 exercise = new Ch13Ex1to4();
do
{
System.out.println();
System.out.println();
System.out.println( "Make a selection" );
System.out.println();
System.out.println( " (1) Internet Delicatessen" );
System.out.println( " (2) Steam Engine Efficiency" );
System.out.println( " (3) Microwave Oven" );
System.out.println( " (4) Fantasy Game" );
System.out.println( " (Q) Quit" );
System.out.println();
System.out.print( "Enter a choice: " );
String response = kbd.nextLine();
if ( response.length() > 0 )
{
System.out.println();
switch ( response.charAt( 0 ) )
{
case '1':
exercise.internetDelicatessen();
break;
case '2':
exercise.steamEngineEfficiency();
break;
case '3':
exercise.microwaveOven();
break;
case '4':
exercise.fantasyGame();
break;
default:
if ( response.toLowerCase().charAt( 0 ) == 'q' )
{
done = true;
}
else
{
System.out.print( "Invalid Choice" );
}
break;
}
}
} while ( !done );
System.out.println( "Goodbye!" );
}
}