-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode
More file actions
286 lines (208 loc) · 7.35 KB
/
Code
File metadata and controls
286 lines (208 loc) · 7.35 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package areaperimeterof2dshapes;
public class AreaPerimeterof2DShapes {
double Length ;
double Height ;
double Radius ;
double PentagonLength ;
static double UserInput ;
AreaPerimeterof2DShapes (){
Length = 0;
Height = 0;
Radius = 0;
PentagonLength = 0;
UserInput = 0;
}
public static void main(String[] args) {
System.out.println ("Enter 1, 2, or 3 to execute the program. ");
System.out.println ("To end the program, type a number that is not : 1,2,3 or 0 ");
UserInputScreen q0 = new UserInputScreen ();
q0.UserInput ();
if (UserInput ==1){
Rectangle q1 = new Rectangle();
q1.UserInputLength();
q1.UserInputHeight();
q1.RectangleArea();
q1.RectanglePerimeter();
}
else if (UserInput==2){
Circle q2 = new Circle ();
q2.UserInputRadius ();
q2.CircleArea ();
q2.CircleCircumference();
}
else if (UserInput==3){
Pentagon q3 = new Pentagon ();
q3.UserInputPentagonLength();
q3.PentagonPerimeter ();
q3.PentagonArea ();
}
}
}
package areaperimeterof2dshapes;
import java.util.InputMismatchException;
import java.util.Scanner ;
public class Rectangle extends AreaPerimeterof2DShapes{
Rectangle (){
}
private double getLength (String Instruction){
Scanner input = new Scanner (System.in);
while (true){
try {
Length = input.nextDouble();
break ;
}
catch (InputMismatchException err){
input.next();
System.out.println ("Not a number, please enter a number : " );
}
}
return Length ;
}
public void UserInputLength(){
System.out.println ("The value of your length must not equal to zero");
System.out.print ("Please enter a length : ");
while (true){
this.Length = getLength("Length");
if (this.Length!=0)break ;
else System.out.print ("\"Length\" must not equal 0, please enter a number : ");
}
}
public double getHeight(String Instruction){
Scanner input = new Scanner (System.in);
while (true){
try {
Height= input.nextDouble();
break ;
}
catch (InputMismatchException err){
input.next();
System.out.println ("Not a number, please enter a number : " );
}
}
return Height;
}
public void UserInputHeight(){
System.out.println ("The value of your Height must not equal to zero");
System.out.print ("Please enter a Height : ");
while (true){
this.Height = getHeight("Height");
if (this.Height!=0)break ;
else System.out.print ("\"Height\" must not equal 0, please enter a number : ");
}
}
public void RectangleArea (){
double Area = Length * Height;
System.out.println ("The area is : "+ Area );
}
public void RectanglePerimeter (){
double Perimeter = 2 *(Length + Height);
System.out.println ("The perimeter is : "+ Perimeter);
}
}
package areaperimeterof2dshapes;
import java.util.Scanner ;
import java.util.InputMismatchException;
public class Circle extends AreaPerimeterof2DShapes{
Circle (){
}
private double getRadius (String Instruction){
Scanner input = new Scanner (System.in);
while (true){
try {
Radius = input.nextDouble();
break ;
}
catch (InputMismatchException err){
input.next();
System.out.println ("Not a number, please enter a number : " );
}
}
return Radius ;
}
public void UserInputRadius (){
System.out.println ("The value of your Radius must not equal to zero");
System.out.print ("Please enter a Radius : ");
while (true){
this.Radius = getRadius("Radius");
if (this.Radius!=0)break ;
else System.out.print ("\"Radius\" must not equal 0, please enter a number : ");
}
}
public void CircleArea (){
double Area = (Math.PI)*(Radius*Radius);
System.out.println ("The area is : "+ Area );
}
public void CircleCircumference (){
double Circumference = (2)*(Math.PI)*(Radius);
System.out.println ("The Circumference is : "+ Circumference );
}
}
package areaperimeterof2dshapes;
import java.util.Scanner ;
import java.util.InputMismatchException;
public class Pentagon extends AreaPerimeterof2DShapes{
Pentagon (){
}
private double getPentagonLength (String Instruction){
Scanner input = new Scanner (System.in);
while (true){
try {
PentagonLength = input.nextDouble();
break ;
}
catch (InputMismatchException err){
input.next();
System.out.println ("Not a number, please enter a number : " );
}
}
return PentagonLength ;
}
public void UserInputPentagonLength(){
System.out.println ("The value of your length must not equal to zero");
System.out.print ("Please enter a length : ");
while (true){
this.PentagonLength = getPentagonLength("PentagonLength");
if (this.PentagonLength!=0)break ;
else System.out.print ("\"PentagonLength\" must not equal 0, please enter a number : ");
}
}
public void PentagonPerimeter (){
double Perimeter = 5 * PentagonLength ;
System.out.println ("The perimeter is : " + Perimeter);
}
public void PentagonArea (){
double SubArea = (5*(2*Math.sqrt(5) +5));
double AnotherArea = (Math.sqrt(SubArea)*0.25);
double FinalArea = (AnotherArea * PentagonLength * PentagonLength);
System.out.println ("The area is : " + FinalArea) ;
}
}
package areaperimeterof2dshapes;
import java.util.InputMismatchException;
import java.util.Scanner;
class UserInputScreen extends AreaPerimeterof2DShapes{
UserInputScreen (){
}
private double getUserInput (String Instruction){
Scanner input = new Scanner (System.in);
while (true){
try {
UserInput = input.nextDouble();
break ;
}
catch (InputMismatchException err){
input.next();
System.out.println ("Not a number, please enter a number : " );
}
}
return UserInput ;
}
public void UserInput (){
System.out.println ("Enter a number : ");
while (true){
this.UserInput = getUserInput("UserInput");
if (this.UserInput!=0)break ;
else System.out.print ("\"UserInput\" must not equal 0, please enter a number : ");
}
}
}