-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
487 lines (455 loc) · 16.5 KB
/
Program.cs
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
// See https://aka.ms/new-console-template for more information
using static System.Console;
Write("Hello and WELCOME!");
Console.ReadKey();
bool returning = true;
while (returning)
{
WriteLine("1.Area" + ' ' + "2.Perimeter " + ' ' + "3.Volume" + ' ' + "4.Imaginary Numbers" + ' ' + "5.Quadratic");
Write("Your Choice:");
Double mainEntry = Convert.ToDouble(Console.ReadLine());
if (mainEntry == 1)
{
WriteLine("1.RECTANGLE " + ' ' +
"2.CIRCLE " + ' ' +
"3.Triangle" + ' ' +
"4.Cylinder");
Write("Selection:");
var entry = Convert.ToDouble(Console.ReadLine());
if (entry == 1)
{
Area.Rectangle();
ExitandEntry.ExitFunction();
}
else if (entry == 2)
{
Area.Circle();
ExitandEntry.ExitFunction();
}
else if (entry == 3)
{
Area.Triangle();
ExitandEntry.ExitFunction();
}
else if (entry == 4)
{
WriteLine("1.Closed" + ' ' + "2.One side Open" + ' ' + "3.Totally Open");
Write("Selection:");
var entry3 = Convert.ToDouble(Console.ReadLine());
if (entry3 == 1)
{
Area.ClosedCylinder();
ExitandEntry.ExitFunction();
}
else if (entry3 == 2)
{
Area.OneSideOpenCylinder();
ExitandEntry.ExitFunction();
}
else if (entry3 == 3)
{
Area.TotallyOpenCylinder();
ExitandEntry.ExitFunction();
}
}
else Exceptions.Exception1();
}
else if (mainEntry == 2)
{
WriteLine("1.RECTANGLE " + ' ' +
"2.CIRCLE ");
Write("Selection:");
Double periEntry = Convert.ToDouble(ReadLine());
if (periEntry == 1)
{
Perimeter.Rectangle();
ExitandEntry.ExitFunction();
}
else if (periEntry == 2)
{
Perimeter.Circle();
ExitandEntry.ExitFunction();
}
else Exceptions.Exception1();
}
else if (mainEntry == 3)
{
WriteLine("1.Prism " + ' ' +
"2.Sphere " + ' ' + "3.Pyramid");
Write("Selection:");
Double volEntry = Convert.ToDouble(ReadLine());
if (volEntry == 1)
{
WriteLine("1.Cube" + ' ' + "2.Cuboid" + ' ' + "3.Cylinder");
Write("Selection:");
Double volEntry2 = Convert.ToDouble(ReadLine());
if (volEntry2 == 1)
{
Volume.squarePrism();
ExitandEntry.ExitFunction();
}
else if (volEntry2 == 2)
{
Volume.rectangularPrism();
ExitandEntry.ExitFunction();
}
else if (volEntry2 == 3)
{
Volume.Cylinder();
ExitandEntry.ExitFunction();
}
else Exceptions.Exception1();
}
else if (volEntry == 2)
{
Volume.Sphere();
ExitandEntry.ExitFunction();
}
else if (volEntry == 3)
{
WriteLine("1.Square pyramid" + ' ' + "2.Cone" + ' ' + "3.Rectangular pyramid");
Write("Selection:");
Double volEntry3 = Convert.ToDouble(ReadLine());
if (volEntry3 == 1)
{
Volume.SquarePyramid();
ExitandEntry.ExitFunction();
}
else if (volEntry3 == 2)
{
Volume.Cone();
ExitandEntry.ExitFunction();
}
else if (volEntry3 == 3)
{
Volume.RectangularPyramid();
ExitandEntry.ExitFunction();
}
else
Exceptions.Exception1();
}
else Exceptions.Exception1();
}
else if (mainEntry == 4)
{
WriteLine("1.Addition" + ' ' + "2.Multiplication" + ' ' + "3.Division");
Write("Your Choice:");
Double fUserEntry = Convert.ToDouble(ReadLine());
if (fUserEntry == 1)
{
complexNumber.Addition();
ExitandEntry.ExitFunction();
}
else if (fUserEntry == 2)
{
complexNumber.Multiplication();
ExitandEntry.ExitFunction();
}
else if (fUserEntry == 3)
{
complexNumber.Division();
ExitandEntry.ExitFunction();
}
}
else if (mainEntry == 5)
{
Quadratic.roots();
ExitandEntry.ExitFunction();
}
else
{
Exceptions.Exception1();
}
}
internal class Area
{
public static void Rectangle()
{
Write("Enter the length of your Rectangle:");
Double length = Convert.ToDouble(ReadLine());
Write("Enter the width of your Rectangle:");
Double width = Convert.ToDouble(ReadLine());
Double AreaofRectangle = length * width;
WriteLine("The Area of the Rectangle is" + ' ' + AreaofRectangle);
}
public static void Circle()
{
Double radius = 0;
Write("Enter the radius of your Circle:");
radius = Convert.ToDouble(ReadLine());
Double AreaofCircle = (3.142) * (radius * radius);
WriteLine("The Area of the Circle is" + ' ' + AreaofCircle);
}
public static void Triangle()
{
Write("Enter the height of the triangle:");
Double height = Convert.ToDouble(ReadLine());
Write("Enter the length of the base:");
Double baseLength = Convert.ToDouble(ReadLine());
Double AreaofTriangle = (0.5) * baseLength * height;
WriteLine("The Area of your triangle is" + ' ' + AreaofTriangle);
}
public static void ClosedCylinder()
{
Write("Enter the height of the cylinder:");
Double height = Convert.ToDouble(ReadLine());
Write("Enter the radius of the base:");
Double baseradius = Convert.ToDouble(ReadLine());
Double TotalSurfaceArea = 2 * (3.142) * baseradius * (baseradius + height);
WriteLine(" The Total Surface Area of your cylinder is:" + ' ' + TotalSurfaceArea);
}
public static void OneSideOpenCylinder()
{
Write("Enter the height of the cylinder:");
Double height = Convert.ToDouble(ReadLine());
Write("Enter the radius of the base:");
Double baseradius = Convert.ToDouble(ReadLine());
Double TotalSurfaceArea = (3.142) * baseradius * (baseradius + (2 * height));
WriteLine(" The Total Surface Area of your cylinder is:" + ' ' + TotalSurfaceArea);
}
public static void TotallyOpenCylinder()
{
Write("Enter the height of the cylinder:");
Double height = Convert.ToDouble(ReadLine());
Write("Enter the radius of the base:");
Double baseradius = Convert.ToDouble(ReadLine());
Double TotalSurfaceArea = (3.142) * baseradius * 2 * height;
WriteLine(" The Total Surface Area of your cylinder is:" + ' ' + TotalSurfaceArea);
}
}
internal class Perimeter
{
public static void Rectangle()
{
Write("Enter the length of your Rectangle:");
Double length = Convert.ToDouble(ReadLine());
Write("Enter the width of your Rectangle:");
Double width = Convert.ToDouble(ReadLine());
Double PerimeterofRectangle = 2 * (length + width);
WriteLine("The Perimeter of the Rectangle is" + ' ' + PerimeterofRectangle);
}
public static void Circle()
{
Write("Enter the radius of your Circle:");
Double radius = Convert.ToDouble(ReadLine());
_ = radius * 2;
Double Circumferenceofcircle = 3.142 * radius * 2;
WriteLine("The Circumference of the Circle is" + ' ' + Circumferenceofcircle);
}
}
internal class Volume
{
public static void squarePrism()
{
Write("Enter the Length of the base:");
Double lengthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Height of the Prism:");
Double heightOfPrism = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (lengthOfBase * lengthOfBase) * heightOfPrism;
WriteLine("The Volume of Your Cube is:" + ' ' + VolumeOfPrism);
}
public static void rectangularPrism()
{
Write("Enter the Length of the base:");
Double lengthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Width of the Base:");
Double widthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Height of the Cuboid:");
Double heightOfPrism = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (lengthOfBase * widthOfBase) * heightOfPrism;
WriteLine("The Volume of Your Cuboid is:" + ' ' + VolumeOfPrism);
}
public static void SquarePyramid()
{
Write("Enter the Length of the base:");
Double lengthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Width of the Base:");
Double widthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Height of the Pyramid:");
Double heightOfPrism = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (0.33) * (lengthOfBase * widthOfBase) * heightOfPrism;
WriteLine("The Volume of Your Pyramid is:" + ' ' + VolumeOfPrism);
}
public static void Sphere()
{
Write("Enter the radius of Sphere:");
Double radiusOfSphere = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (3.142 * radiusOfSphere * radiusOfSphere) * (1.33);
WriteLine("The Volume of Your Sphere is:" + ' ' + VolumeOfPrism);
}
public static void Cylinder()
{
Write("Enter the radius of the base:");
Double radiusOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Height of the Cylinder:");
Double heightOfPrism = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (3.142 * radiusOfBase * radiusOfBase) * (heightOfPrism);
WriteLine("The Volume of Your Cylinder is:" + ' ' + VolumeOfPrism);
}
public static void RectangularPyramid()
{
Write("Enter the Length of the base:");
Double lengthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Width of the Base:");
Double widthOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Height of the Pyramid:");
Double heightOfPrism = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (0.33) * (lengthOfBase * widthOfBase) * heightOfPrism;
WriteLine("The Volume of Your Pyramid is:" + ' ' + VolumeOfPrism);
}
public static void Cone()
{
Double radiusOfBase = 0;
Double heightOfPrism = 0;
Write("Enter the radius of the base:");
radiusOfBase = Convert.ToDouble(ReadLine());
Write("Enter the Height of the Cone:");
heightOfPrism = Convert.ToDouble(ReadLine());
Double VolumeOfPrism = (0.33) * (3.142 * radiusOfBase * radiusOfBase * heightOfPrism);
WriteLine("The Volume of Your Cone is:" + ' ' + VolumeOfPrism);
}
}
internal class ExitandEntry
{
public static void ExitFunction()
{
bool returning = true;
Write("Press '1' To start over or '2' to exit: ");
var entry2 = 0;
entry2 = Convert.ToInt32(ReadLine());
if (entry2 == 1)
{
returning = true;
}
else if (entry2 == 2)
{
Environment.Exit(0);
}
}
}
internal class Exceptions
{
public static void Exception1()
{
WriteLine("Please the Input was wrong! ");
WriteLine(" Enter the correct Input");
}
}
internal class complexNumber
{
public static void Division()
{
Write("Enter first real part:");
Double fRealPart = (Double)Convert.ToDouble(ReadLine());
Write("Enter First Imaginary:");
Double sRealPart = (Double)Convert.ToDouble(ReadLine());
Write("Enter Second Real Part:");
Double fImaginaryPart = Convert.ToDouble(ReadLine());
Write("Enter Second Imaginary part:");
Double sImaginaryPart = Convert.ToDouble(ReadLine());
Double Quotient1 = (sImaginaryPart * sImaginaryPart) + (fImaginaryPart * fImaginaryPart);
Double Quotient2 = ((fRealPart * fImaginaryPart) + (sRealPart * sImaginaryPart));
Double Quotient3 = (-1 * ((fRealPart * sImaginaryPart) - (sRealPart * fImaginaryPart)));
WriteLine("Your final Answer is:" + ' ' + Quotient2 + ' ' + "/" + Quotient1 + ' ' + Quotient3 + "i" + ' ' + "/" + Quotient1);
WriteLine("Do you want the real Parts and Imaginary Part?");
Write("If Yes press '1', If No press '2':");
Double UserEntry = (Double)Convert.ToDouble(ReadLine());
if (UserEntry == 1)
{
WriteLine("Real Part is :" + Quotient2 + ' ' + "/" + Quotient1);
WriteLine("Imaginary Part is:" + Quotient3 + "i" + ' ' + "/" + Quotient1);
}
else if (UserEntry == 2)
{
ExitandEntry.ExitFunction();
}
else Exceptions.Exception1();
}
public static void Addition()
{
Write("Enter first real part:");
Double fRealPart = (Double)Convert.ToDouble(ReadLine());
Write("Enter First Imaginary:");
Double fImaginaryPart = (Double)Convert.ToDouble(ReadLine());
Write("Enter Second Real Part:");
Double sRealPart = Convert.ToDouble(ReadLine());
Write("Enter Second Imaginary part:");
Double sImaginaryPart = Convert.ToDouble(ReadLine());
Double Sum1 = fRealPart + sRealPart;
Double Sum2 = fImaginaryPart + sImaginaryPart;
WriteLine("Your final Answer is:" + ' ' + Sum1 + "+" + Sum2 + "i");
WriteLine("Do you want the real Parts and Imaginary Part?");
Write("If Yes press '1', If No press '2':");
Double UserEntry = (Double)Convert.ToDouble(ReadLine());
if (UserEntry == 1)
{
WriteLine("Real Part is :" + Sum1);
WriteLine("Imaginary Part is:" + Sum2 + "i");
}
else if (UserEntry == 2)
{
ExitandEntry.ExitFunction();
}
else Exceptions.Exception1();
}
public static void Multiplication()
{
Write("Enter first real part:");
Double fRealPart = (Double)Convert.ToDouble(ReadLine());
Write("Enter First Imaginary:");
Double fImaginaryPart = (Double)Convert.ToDouble(ReadLine());
Write("Enter Second Real Part:");
Double sRealPart = Convert.ToDouble(ReadLine());
Write("Enter Second Imaginary part:");
Double sImaginaryPart = Convert.ToDouble(ReadLine());
Double Quotient1 = (fRealPart * sRealPart) - (fImaginaryPart * sImaginaryPart);
Double Quotient2 = ((fImaginaryPart * sRealPart) + (fRealPart * sImaginaryPart));
WriteLine("Your final Answer is:" + ' ' + Quotient1 + "+" + Quotient2 + "i");
WriteLine("Do you want the real Parts and Imaginary Part?");
Write("If Yes press '1', If No press '2':");
Double UserEntry = (Double)Convert.ToDouble(ReadLine());
if (UserEntry == 1)
{
WriteLine("Real Part is :" + Quotient1);
WriteLine("Imaginary Part is:" + Quotient2 + "i");
}
else if (UserEntry == 2)
{
ExitandEntry.ExitFunction();
}
else Exceptions.Exception1();
}
}
internal class Quadratic
{
public static void roots()
{
// Prompt the user to enter coefficients a, b, and c
Console.Write("Enter coefficient a: ");
double a = double.Parse(Console.ReadLine());
Console.Write("Enter coefficient b: ");
double b = double.Parse(Console.ReadLine());
Console.Write("Enter coefficient c: ");
double c = double.Parse(Console.ReadLine());
// Calculate the discriminant
double D = b * b - 4 * a * c;
if (D < 0)
{
// The quadratic equation has no real roots
Console.WriteLine("The quadratic equation has no real roots.");
}
else if (D == 0)
{
// The quadratic equation has one real root
double x = -b / (2 * a);
Console.WriteLine("The quadratic equation has one real root: x = {0}", x);
}
else
{
// The quadratic equation has two real roots
double x1 = (-b + Math.Sqrt(D)) / (2 * a);
double x2 = (-b - Math.Sqrt(D)) / (2 * a);
Console.WriteLine("The quadratic equation has two real roots: x1 = {0}, x2 = {1}", x1, x2);
}
}
}