-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
164 lines (158 loc) · 6.52 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InteractiveConsoleApp
{
class globalVariables
{
public static int missCount= 0;
public static int missLimit= 3;
public static string calcMode;
}
class Program
{
static void Main(string[] args)
{
Title();
ModeSelect();
}
static void Title()
{
Console.Title = "Open Basic Calculator v0.3-alpha";
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("================================");
Console.WriteLine("Open Basic Calculator 0.3-alpha");
Console.WriteLine("================================");
Console.WriteLine("Created by andrimator - Made in C#");
}
static void ModeSelect()
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write("\nSeleccione el modo a utilizar (+, -, *, /) : ");
globalVariables.calcMode = Convert.ToString(Console.ReadLine());
Console.ForegroundColor = ConsoleColor.White;
switch(globalVariables.calcMode)
{
case "+":
Console.WriteLine("\nModo de Suma activada\nFormato: a + b + c (only numbers, otherwise it will crash)");
ObtenerVariables("+");
break;
case "-":
Console.WriteLine("\nModo de Resta activada\nFormato: a - b - c (only numbers, otherwise it will crash)");
ObtenerVariables("-");
break;
case "*":
Console.WriteLine("\nModo de Multiplicacion activada\nFormato: a * b * c (only numbers, otherwise it will crash)");
ObtenerVariables("*");
break;
case "/":
Console.WriteLine("\nModo de Division activada\nFormato: a / b / c (only numbers, otherwise it will crash)");
ObtenerVariables("/");
break;
default:
Console.ForegroundColor = ConsoleColor.Red; //Color Rojo
if(globalVariables.missCount >= globalVariables.missLimit) Console.Write("Has insertado un modo no válido!\nEscribe alguno de los caracteres contenidos en los parentesis! () ");
else
{
globalVariables.missCount++;
Console.Write("Has insertado un modo no válido!");
}
ModeSelect();
break;
}
}
static void ObtenerVariables(string mode)
{
double[] num = {0, 0, 0};
//Start
Console.ForegroundColor = ConsoleColor.White;
//Operador
Console.Write("a. Enter a number: ");
num[0] = Convert.ToDouble(Console.ReadLine());
Console.Write("b. Enter another number: ");
num[1] = Convert.ToDouble(Console.ReadLine());
Console.Write("c. Enter another number: ");
num[2] = Convert.ToDouble(Console.ReadLine());
//Enviar variables a su respectivo operador
switch(mode)
{
case "+":
OperatorMode3(num[0], num[1], num[2], "+");
break;
case "-":
OperatorMode3(num[0], num[1], num[2], "-");
break;
case "*":
OperatorMode3(num[0], num[1], num[2], "*");
break;
case "/":
OperatorMode3(num[0], num[1], num[2], "/");
break;
default:
Console.ForegroundColor = ConsoleColor.Red; //Color Rojo
//Console.Write("Invalid character! Try again, but this time with numbers. ");
Console.Write("Invalid character! Try again. ");
break;
}
}
static void OperatorMode3(double a, double b, double c, string mode)
{
double mathResult;
switch(mode)
{
case "+":
mathResult = a + b + c;
Console.WriteLine("Final Operation:");
Console.WriteLine(a + "+" + b + "+" + c + "=" + mathResult);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Raw Result: " + mathResult);
break;
case "-":
mathResult = a - b - c;
Console.WriteLine("Final Operation:");
Console.WriteLine(a + "-" + b + "-" + c + "=" + mathResult);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Raw Result: " + mathResult);
break;
case "*":
mathResult = a * b * c;
Console.WriteLine("Final Operation:");
Console.WriteLine(a + "*" + b + "*" + c + "=" + mathResult);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Raw Result: " + mathResult);
break;
case "/":
mathResult = a / b / c;
Console.WriteLine("Final Operation:");
Console.WriteLine(a + "/" + b + "/" + c + "=" + mathResult);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Raw Result: " + mathResult);
break;
}
Console.ForegroundColor = ConsoleColor.White;
GivenResult();
}
static void GivenResult()
{
Console.Write("Do you wanna make another math operation? [Y/N]: ");
string endTask = Console.ReadLine();
endTask = endTask.ToUpper();
if(endTask.Contains("Y"))
{
globalVariables.missCount = 0;
Console.Write("Clear previous math? [Y/N]: ");
string clearLog = Console.ReadLine();
clearLog = clearLog.ToUpper();
if(clearLog.Contains("Y"))
{
Console.Clear();
Title();
ModeSelect();
}
else ModeSelect();
} else System.Environment.Exit(0);
}
}
}