-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenu.cpp
167 lines (147 loc) · 5.55 KB
/
Menu.cpp
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
#include "Menu.h"
#include "ComplexVec.h"
#include "Complex.h"
using namespace std;
/* Constructor */
Menu::Menu() {}
/* Input validation method */
void Menu::getInput( int& idx, const char* param, const int vecSize) {
bool validIdx = 0; // validIdx = 0 if not valid, 1 if valid
cout << "Index range: 0.." << vecSize-1 << endl; // Printing avaiable indexes range
while (!validIdx) { // Get index input from user until validIdx is 1
cout << "Insert index of " << param << " number: "; // Desired index input
cin >> idx;
cout << "\n";
if (idx >= vecSize || idx < 0) // Validity condition, if inputed index is in range of vector size
cout << "Index not in range, try again." << endl;
else
validIdx = 1; // Terminate loop
}
}
void Menu::mainMenu() {
bool runMenu = 1; // Menu loop running-flag
int choice; // holds user menu choice
int firstIdx, secondIdx; // hold vector accesing parameters
while (runMenu) {
cout
<< "=======================================\n"
<< "<1> add a new complex number\n"
<< "<2> print all numbers\n"
<< "<3> +\n"
<< "<4> -\n"
<< "<5> /\n"
<< "<6> *\n"
<< "<7> ~\n"
<< "<8> polar coordinate\n"
<< "<9> exit\n"
<< "=======================================" << endl;
cin >> choice;
switch (choice) {
case 1:
{ // Insert new complex number to ComplexVec from user input
float real, image;
cout << "Please insert a copmlex number:" << endl;
cout << "Real:";
cin >> real;
cout << "Imaginary:";
cin >> image;
cout << "\n";
Complex newComplex(real, image); // New copmlex number with inputed parameters (real, imaginary valuess)
ComplexVec.insert(newComplex); // Appended to ComplexVec
cout << newComplex << " appended to the complex vector." << endl;
break;
}
case 2:
{
ComplexVec.printElements();
break;
}
case 3:
{ // If vector is not empty, get element indexes from user input in-order to conduct ADDITION(+) calculation
int vecSize = ComplexVec.getSize();
if (vecSize == 0)
cout << "Vector is empty, please insert new numbers" << endl;
else {
getInput(firstIdx, "first", vecSize);
getInput(secondIdx, "second", vecSize);
cout << '(' << ComplexVec[firstIdx] << ')' << " + " << '(' << ComplexVec[secondIdx] << ')' << " = "
<< ComplexVec[firstIdx] + ComplexVec[secondIdx] << endl;
}
break;
}
case 4:
{ // If vector is not empty, get element indexes from user input in-order to conduct SUBSTRACTION(-) calculation
int vecSize = ComplexVec.getSize();
if (vecSize == 0)
cout << "Vector is empty, please insert new numbers" << endl;
else {
getInput(firstIdx, "first", vecSize);
getInput(secondIdx, "second", vecSize);
cout << '(' << ComplexVec[firstIdx] << ')' << " - " << '(' << ComplexVec[secondIdx] << ')' << " = "
<< ComplexVec[firstIdx] - ComplexVec[secondIdx] << endl;
}
break;
}
case 5:
{ // If vector is not empty, get element indexes from user input in-order to conduct DIVISIONO(/) calculation
int vecSize = ComplexVec.getSize();
if (vecSize == 0)
cout << "Vector is empty, please insert new numbers" << endl;
else {
getInput(firstIdx, "first", vecSize);
cout << "\nBeware, zero-division is not allowed! \n\n"; // Zero division warning, force index re-input if 0 is placed in inputed index
do {
getInput(secondIdx, "second", vecSize);
cout << ((ComplexVec[secondIdx].getRad() == 0) ? "Zero-division is not allowed!" : "") << endl;
} while (ComplexVec[secondIdx].getRad() == 0);
cout << '(' << ComplexVec[firstIdx] << ')' << " / " << '(' << ComplexVec[secondIdx] << ')' << " = "
<< ComplexVec[firstIdx] / ComplexVec[secondIdx] << endl;
}
break;
}
case 6:
{ // If vector is not empty, get element indexes from user input in-order to conduct MULTIPLICATION(*) calculation
int vecSize = ComplexVec.getSize();
if (vecSize == 0)
cout << "Vector is empty, please insert new numbers" << endl;
else {
getInput(firstIdx, "first", vecSize);
getInput(secondIdx, "second", vecSize);
cout << '(' << ComplexVec[firstIdx] << ')' << " * " << '(' << ComplexVec[secondIdx] << ')' << " = "
<< ComplexVec[firstIdx] * ComplexVec[secondIdx] << endl;
}
break;
}
case 7:
{ // If vector is not empty, get element indexes from user input in-order to conduct CONJUGATE(~) calculation
int vecSize = ComplexVec.getSize();
if (vecSize == 0)
cout << "Vector is empty, please insert new numbers" << endl;
else {
getInput(firstIdx, "complex", vecSize);
cout << "The conjugate of " << ComplexVec[firstIdx] << " is: " << ~ComplexVec[firstIdx] << endl;
}
break;
}
case 8:
{ // If vector is not empty, get element indexes from user input in-order to conduct get the number's radius and phase
int vecSize = ComplexVec.getSize();
if (vecSize == 0)
cout << "Vector is empty, please insert new numbers" << endl;
else {
getInput(firstIdx, "complex", vecSize);
cout << "Polar coordinates for " << ComplexVec[firstIdx] << endl;
cout << "Phase (degree): " << ComplexVec[firstIdx].getPhase() << "\370" << endl;
cout << "Radius: " << ComplexVec[firstIdx].getRad() << endl;
}
break;
}
case 9:
runMenu = 0; // Turn off menu loop running flag
break;
default: // If invalid choice has been made:
cout << "Invalid input, try again." << endl;
break;
}
}
}