mutiple math operations in a single output

im trying to do a math calculation that involves multiple math operation ex((a+b)*(sin(a)/sin(b)) something like this but whenever i execute the code its giving me 3 answers this is the code hoping you could help me it very urgent though

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
#include <iostream.h>
#include <math.h>
#include <string.h>




int nVar = 0;
char varName[50];
double varValue[50];

double getValue(char ch);
void setValue(char ch, double d);

int main()
{
	cout << "This program enables the user to perform Math Functions such as fabs, sqrt, pow, log, log10, sin cos, tan, asin, acos, atan, atan2, sinh, cosh, tanh, ceil, floor, mod. Just input a character(a - z ) followed by an equal sign and the numerical value then press enter. Then in the preceding line input the function you want to use followed by a parenthesis and the alpha character then press enter. To quit, type quit then press enter:\n\n\n";

	for(int i = 0; i < 50; i++)
	{
		varName[i] = '(';
	}

	char ch;
	char input[6];
	double operand1;
	double operand2;
	double res;

	while(1)
	{
		cout << ">>";

		cin >> ch;
		
	
		if(ch =='q'|| ch =='Q')
		{
			break;
		}
		
		if(ch =='quit')
		{
			break;
		}
		

		input[0] = ch;

		operand1 = getValue(ch);

		cin >> ch;
		input[1] = ch;
		if(ch == '=')
		{
			cin >> operand1;

			setValue(input[0], operand1);

			cout << input[0] << "=\n\n\n\t" <<operand1 << "\n";

		}
		else
		{
			switch(ch)
			{
			case'+':

				cin >> ch;

				operand2 = getValue(ch);

				res = operand1 + operand2;

				cout << "ans=\n\n\n\t" << res << "\n";
				break;

			case'-':

				cin >> ch;

				operand2 = getValue(ch);

				res = operand1 - operand2;

				cout << "ans=\n\n\n\t" << res << "\n";
				break;

			case'*':

				cin >> ch;

				operand2 = getValue(ch);

				res = operand1 * operand2;

				cout << "ans=\n\n\n\t" << res << "\n";
				break;

			case'/':

				cin >> ch;

				operand2 = getValue(ch);

				res = operand1 / operand2;

				cout << "ans=\n\n\n\t" << res << "\n";
				break;

			default:


				cin >> input[2];
				int i = 3;
				while (ch != '(')
				{
					cin >> ch;
					input [i] = ch;
					i++;
				}
			

				input[i-1] = '\0';

				if(strcmp(input, "sin") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = sin(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";

					cin >> ch;

				}
				
				if(strcmp(input, "cos") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = cos(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";

					cin >> ch;
				}

				if(strcmp(input, "tan") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = tan(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";

					cin >> ch;
				}

				if(strcmp(input, "exp") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = exp(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
				}

				if(strcmp(input, "log") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = log(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
				}

				if(strcmp(input, "pow") == 0)
				{
					cin >> ch;
					
					operand1 = getValue(ch);

					cin >> ch;

					cin >> ch;

					operand2 = getValue(ch);

					res = pow(operand1, operand2);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
				}

				
				if(strcmp(input, "asin") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = asin(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}
				
				if(strcmp(input, "acos") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = acos(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
				}
				
				if(strcmp(input, "atan") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = atan(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}
				
				if(strcmp(input, "fabs") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = fabs(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}
				
				if(strcmp(input, "sqrt") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = sqrt(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}

				if(strcmp(input, "ceil") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = ceil(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}
				
				if(strcmp(input, "sinh") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = sinh(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}
				if(strcmp(input, "cosh") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = cosh(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}
				if(strcmp(input, "tanh") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = tanh(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}

				if(strcmp(input, "fmod") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = fmod(operand1, operand2);

					cout << "ans=\n\n\n\t" << res << "\n";

					cin >> ch;

				}

				if(strcmp(input, "floor") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					res = floor(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
			
				}

				if(strcmp(input, "log10") == 0)
				{
					cin >> ch;

					//cin >> ch;

					operand1 = getValue(ch);

					res = log10(operand1);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
				}
				if(strcmp(input, "atan2") == 0)
				{
					cin >> ch;

					operand1 = getValue(ch);

					cin >> ch;

					cin >> ch;

					res = atan2(operand1, operand2);

					cout << "ans=\n\n\n\t" << res << "\n";
					
					cin >> ch;
				}

				break;
			}
		}
	}
	return 0;
}


double getValue(char ch)
{
	for(int i = 0; i < nVar; i++)
	{
		if(ch == varName[i])
		{
			return varValue[i];
		}
	}
	varName[nVar] = ch;
	varValue[nVar] = 0.0;

	nVar++;
	return 0.0;
}


void setValue(char ch, double d)
{
	for(int i = 0; i <nVar; i++)
	{
		if(ch == varName[i])
		{
			varValue[i] = d;
		}
	}
}
Line breaks, dude...
1
2
3
4
cout << "some string"
    " that continues"
    " on multiple"
    " lines"


iostream.h has been deprecated for over a decade. What compiler are you using?
Try refactoring your program. Make it so that every function does 1 and only 1 thing (including main).

Extract all of the stuff in your if else if into functions. Remove duplication. Then try looking for the bug again.

Also if you use a map for variables you can look them up by name.
im using microsoft visual c++ 6.0 i know its old but thats the one being used in the university so im trying to use the same

could you cite an example how to map the variables and look them up by name?
1
2
3
4
5
std::map<std::string, int> int_map; //this is a bunch of ints with an std::string as a key

int_map["a"] = 2; //"a" key doesn't exist so it gets created
int_map["b"] = 3;
int_map["a"] = 0; //now "a" == 0, "b" == 3 
closed account (S6k9GNh0)
1
2
3
4
5
6
7
8
9
		if(ch == '=')
		{
			cin >> operand1;

			setValue(input[0], operand1);

			cout << input[0] << "=\n\n\n\t" <<operand1 << "\n";

		}


Putting this outside of the switch statement seems pointless to me. If you were to place this in a switch statement, it would work just fine if not the exact same and faster.

1
2
3
4
5
6
7
8
				cin >> ch;

				operand2 = getValue(ch);

				res = operand1 * operand2;

				cout << "ans=\n\n\n\t" << res << "\n";
				break;


This also seems strange to me. I would go ahead and place this is a function for code reuse at it's simplest form. You may not want to put all of this in there and make a function that allows more flexibility. For instance, leave out cin >> ch; so the function doesn't require an input.
Topic archived. No new replies allowed.