-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMath_eqn_soln.c
74 lines (65 loc) · 1.54 KB
/
Math_eqn_soln.c
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
#include <stdlib.h>
#include <stdio.h>
void main()
{
int i=0;
char flag=0;
int sign[6];
int term;
int term_1=0;
int term_2=0;
char equation[100]="2+2*8-9/3"; //type the equation here!
while(equation[i]!='\0') //loop to display the equation with clear long tabs!
{
printf("%c ",equation[i]);
i++;
}
for(i=0;i<6;i++)
sign[i]=0;
i=1;
while(equation[i]!='\0')
{
switch(equation[i])
{
case '/':
if(flag==0)
{
sign[2]=i;
flag++;
term=((('equation[i-1]')-('\0'))/(('equation[i+1]')-('\0')));
equation[i-1]=(char)term;
i=i+2;
while(equation[i]!='\0')
{
equation[i-2]=equation[i];
i++;
}
i=sign[2];
}
break;
case '*':
if(flag>1)
{
sign[3]=i;
flag++;
term=((('equation[i-1]')-('\0'))*(('equation[i+1]')-('\0')));
equation[i-1]=(char)term;
i=i+2;
while(equation[i]!='\0')
{
equation[i-2]=equation[i];
i++;
}
i=sign[2];
}
break;
case '+':
if(flag>2)
{
sign[4]=i;
flag++;
term=((('equation[i-1]')-('\0'))+(('equation[i+1]')-('\0')));
equation[i-1]=(char)term;
i=i+2;
while(equation[i]!='\0')
}