-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
290 lines (233 loc) · 9.19 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
using System;
using System.Text;
namespace Calculatortest
{
public class Program
{
static void Main(string[] args)
{
//Shows a menu until the program is exited
bool showMenu = true;
while (showMenu)
{
showMenu = MainMenu();
}
}
private static bool MainMenu()
{
double userInput1, userInput2;
string userInput;
bool myBool1, myBool2;
StringBuilder strB = new();
Console.Clear();
Console.WriteLine("Välkommen att använda miniräknarfunktionen:");
Console.WriteLine("\nVälj räknesätt: ");
Console.WriteLine("1 för +) - Addition");
Console.WriteLine("2 för -) - Subtraktion");
Console.WriteLine("3 för *) - Multiplikation");
Console.WriteLine("4 för /) - Division");
Console.WriteLine("5 för k) - Kvadraten (x^2)");
Console.WriteLine("6 för r) - Kvadratroten");
Console.WriteLine("7 för att Avsluta");
bool menu = int.TryParse(Console.ReadLine(), out int userCT);
if (menu == false)
{
Console.WriteLine("Du måste skriva siffran som representerar ditt valda räknesätt!");
return true;
}
if (userCT == 7)
{
return false;
}
double res;
switch (userCT)
{
#region 1 Addition
case 1:
{
Console.WriteLine("Skriv in dina tal du vill addera med kommatecken emellan " +
"och tryck sedan enter:\n");
userInput = Console.ReadLine();
string[] arr = userInput.Split();
if (arr.Length == 2)
{
myBool1 = double.TryParse(arr[0], out userInput1);
myBool2 = double.TryParse(arr[1], out userInput2);
if (myBool1 && myBool2)
{
res = Addition(userInput1, userInput2);
Console.WriteLine(userInput1 + " + " + userInput2 + " = " + res);
Console.ReadLine();
}
else
{
Console.WriteLine("Du måste skriva in tal att addera!");
}
}
else
{
res = Addition(arr);
Console.WriteLine("Summan av dina tal = " + res);
}
Console.ReadLine();
return true;
}
#endregion
#region 2 Subtraktion
case 2:
{
Console.WriteLine("Skriv in dina tal du vill addera med kommatecken emellan " +
"och tryck sedan enter:\n");
userInput = Console.ReadLine();
string[] arr = userInput.Split();
if (arr.Length == 2)
{
myBool1 = double.TryParse(arr[0], out userInput1);
myBool2 = double.TryParse(arr[1], out userInput2);
if (myBool1 && myBool2)
{
res = Subtraction(userInput1, userInput2);
Console.WriteLine(userInput1 + " - " + userInput2 + " = " + res);
Console.ReadLine();
}
else
{
Console.WriteLine("Du måste skriva in tal att subtrahera!");
}
}
else
{
res = Subtraction(arr);
Console.WriteLine("Summan av dina tal efter subtraction = " + res);
}
Console.ReadLine();
return true;
}
#endregion
#region 3 Multiplikation
case 3:
{
Console.WriteLine("Skriv in ditt första tal och tryck enter:\n");
userInput1 = GetNumberFromUser();
Console.WriteLine("\nSkriv in ditt andra tal och tryck enter:");
userInput2 = GetNumberFromUser();
res = Multiplication(userInput1, userInput2);
Console.WriteLine(userInput1 + " * " + userInput2 + " = " + res);
Console.ReadLine();
return true;
}
#endregion
#region 4 Division
case 4:
{
Console.WriteLine("Skriv in ditt första tal och tryck enter:\n");
userInput1 = GetNumberFromUser();
Console.WriteLine("\nSkriv in ditt andra tal och tryck enter:");
userInput2 = GetNumberFromUser();
res = Division(userInput1, userInput2);
Console.WriteLine(userInput1 + " / " + userInput2 + " = " + res);
Console.ReadLine();
return true;
}
#endregion
#region 5 Kvadraten (x^2)
case 5:
{
Console.WriteLine("Skriv in ditt tal och tryck enter:\n");
userInput1 = GetNumberFromUser();
var res1 = Pow2(userInput1);
Console.WriteLine("Kvadraten av " + userInput1 + " = " + res1);
Console.ReadLine();
return true;
}
#endregion
#region 6 Kvadratroten
case 6:
{
Console.WriteLine("Skriv in ditt första tal och tryck enter:\n");
userInput1 = GetNumberFromUser();
var res1 = Sqrroot(userInput1);
Console.WriteLine("Kvadratroten av " + userInput1 + " = " + res1);
Console.ReadLine();
return true;
}
#endregion
default:
return true;
}
}
private static Exception DivideByZeroException()
{
throw new NotImplementedException();
}
public static double Sqrroot(double userInput)
{
var result = Math.Sqrt(userInput);
return result;
}
public static double Pow2(double userInput)
{
var result = Math.Pow(userInput, 2);
return result;
}
public static double Division(double userInput1, double userInput2)
{
double res = userInput1 / userInput2;
return res;
}
public static double Multiplication(double userInput1, double userInput2)
{
var result = userInput1 * userInput2;
return result;
}
public static double Subtraction(double userInput1, double userInput2)
{
var result = userInput1 - userInput2;
return result;
}
public static double Subtraction(string[] arr)
{
bool myBool1;
double myDouble;
double firstNum = double.Parse(arr[0]);
var res = firstNum;
for (int i = 1; i < arr.Length; i++)
{
myBool1 = double.TryParse(arr[i], out myDouble);
if (myBool1)
{
res -= myDouble;
}
}
return res;
}
public static double Addition(double userInput1, double userInput2)
{
return userInput1 + userInput2;
}
public static double Addition(string[] arr)
{
bool myBool1 = true;
double res = 0;
for (int i = 0; i < arr.Length; i++)
{
myBool1 = double.TryParse(arr[i], out double myDouble);
if (myBool1)
{
res += myDouble;
}
}
return res;
}
public static double GetNumberFromUser()
{
double userInput = 0;
bool succeeded = false;
while (!succeeded)
{
succeeded = double.TryParse(Console.ReadLine(), out userInput);
}
return userInput;
}
}
}