forked from DHEERAJHARODE/Hacktoberfest2024-Open-source-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Advanced Calculator using C.c
226 lines (166 loc) · 3.79 KB
/
Advanced Calculator using C.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
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
//######## Mini Project **Calculator Using C** ##########
// Developer - Dernyt-TPE
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<stdlib.h>
#include <ctype.h>
void optionTray();
void secondOptionTray();
void addition()
{printf("\nEnter nos. to add separated by space_ || press Enter ┘ for solution \n\n");
int input=0; int ans=0; char c='\0';
while(c!='\n'){
scanf("%d", &input);
ans+= input;
c=getchar();
}
printf("\n = %d",ans);
secondOptionTray();
}
void subtraction ()
{
int first, second; int ans = 0;
printf ("\nEnter the first number : ");
scanf ("%d", &first);
printf ("Enter the second number : ");
scanf ("%d", &second);
ans=first - second;
printf ("\n = %d", ans);
secondOptionTray();
}
void multiplication ()
{
printf("\nEnter nos. to multiply separated by space_ || press Enter ┘ for solution \n\n");
int input=0; int ans=1; char c='\0';
while(c!='\n'){
scanf("%d", &input);
ans*= input;
c=getchar();
}
printf("\n = %d",ans);
secondOptionTray();
}
void division ()
{
int dend, isor=0;char c='\0';
printf ("\nEnter the Dividend: ");
scanf ("%d", &dend);
printf ("Enter the Divisor: ");
scanf ("%d", &isor);
int ans = dend / isor;
printf ("\nQuotient is = %d", ans);
printf("\nRemainder is");
printf(" = %d", (dend%isor));
secondOptionTray();
}
void power ()
{
double base, exponent, ans;
printf ("\nEnter the Base: ");
scanf ("%lf", &base);
printf ("Enter the Exponent(Power): ");
scanf ("%lf", &exponent);
ans = pow (base, exponent);
printf ("\n = %lf", ans);
secondOptionTray();
}
void sqroot()
{
double input;
printf("\nEnter no. for Square Root: ");
scanf("%lf", &input);
printf("\n = %lf", sqrt(input));
secondOptionTray();
}
void cbroot(){
double input;
printf("\nEnter no. for Cube Root: ");
scanf("%lf", &input);
printf("\n = %lf", cbrt(input));
secondOptionTray();
}
void factorial ()
{
int input, fact = 1;
printf ("\nEnter a number to find factorial : ");
scanf ("%d", &input);
if (input < 0)
printf ("\nPlease enter a positive number..");
if (input == 0)
printf("\n = 1");
else{
for (int x = 1; x <= input; x++){
fact = fact * x;}
printf ("\n = %d", fact);
}secondOptionTray();
}
//**************************************
int main ()
{
char choice='\0';
printf ("\n\t\t\t\t*****Welcome to C calculator*****\n\n");
optionTray();
while (1>0)
{
choice= getchar();
switch (choice)
{
case '1':
case '+':
addition ();break;
case '-':
case '2':
subtraction ();
break;
case '*':
case '3':
multiplication ();
break;
case '/':
case '4':
division ();
break;
case '^':
case '5':
power();
break;
case '|':
case '6':
sqroot();
break;
case '~':
case '7':
cbroot();
break;
case '!':
case '8':
factorial();
break;
case 'M':
case 'm':
optionTray();break;
case 's':
case 'S':
exit(0);break;
}
}
}
void secondOptionTray()
{
printf ("\n\n## Press 's' to stop ##");
printf("\n\n## Press 'm' for Full Option Menu ## ");
}
void optionTray()
{
secondOptionTray();
printf ("\n\n\nEnter '+' or '1' for Addition");
printf ("\t\t\t\tEnter '-' or '2; for Subtraction");
printf ("\nEnter '*' or '3' for Multiplication");
printf ("\t\t\tEnter '/' or '4' for Division");
printf ("\nEnter '^' or '5' for Power");
printf ("\t\t\t\tEnter '|' or '6' for Square Root");
printf ("\nEnter '~' or '7' for Cube Root");
printf ("\t\t\t\tEnter '!' or '8' for Factorial \n\n");
printf ("\n\n\n\nEnter the option you wish to perform — ");
}