-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scientific Calculator.cpp
282 lines (194 loc) · 6.93 KB
/
Scientific Calculator.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
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
#include<iostream>
#include<math.h>
#include<stack>
using namespace std;
int factorial(int n);
int exponent(int a, int b);
void binary(int m);
int main ()
{
double a;
double b;
double pi=3.14159265;
int c;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
cout<<endl;
cout<<"Scientific Calculator\n";
cout<<"1: Addition\t\t"<<"7: Sin\t\t"<<"\t\t13: Log"<<endl;
cout<<"2: Subtraction\t\t"<<"8: Cos\t\t"<<"\t\t14: Log with base 10"<<endl;
cout<<"3: Product\t\t"<<"9: Tan\t\t"<<"\t\t15: Square Root"<<endl;
cout<<"4: Division\t\t"<<"10: Inverse of Sin\t\t"<<"16: Decimal to Binary conversion"<<endl;
cout<<"5: Exponent\t\t"<<"11: Inverse of Cos\t\t"<<"17: Area of circle"<<endl;
cout<<"6: Factorial\t\t"<<"12: Inverse of Tan"<<endl;
cout<<"Enter the function that you want to perform : ";
cin>>c;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
switch(c)
{
case 1: //addition
cout<<"Enter the first number:";
cin>>a;
cout<<"Enter the second number:";
cin>>b;
cout<<"The sum is"<<" "<<a+b<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 2: //subtraction
cout<<"Enter the first number:";
cin>>a;
cout<<"Enter the second number:";
cin>>b;
cout<<"The answer is"<<" "<<a-b<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 3: //product
cout<<"Enter the first number:";
cin>>a;
cout<<"Enter the second number:";
cin>>b;
cout<<"The product is"<<" "<<a*b<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 4: //division
cout<<"Enter the first number:";
cin>>a;
cout<<"Enter the second number:";
cin>>b;
cout<<"The answer is"<<" "<<a/b<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 5:{//er the base:";
int a;
int b;
cout<<"Enter the base:"<<endl;
cin>>a;
cout<<"Enter the exponent:(must be positive)"<<endl;
cin>>b;
cout<<"The answer is"<<" "<<exponent(a,b)<<endl;
break;
}
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 6://factorial
cout<<"Enter the number : ";
cin>>a;
cout<<"The answer is"<<" "<<factorial(a)<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 7: //sin
cout<<"Enter the number : ";
cin>>a;
cout<<"Sin = "<<sin(a)<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 8: //cos
cout<<"Enter the number : ";
cin>>a;
cout<<"Cos = "<<cos(a)<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 9: //tan
cout<<"Enter the number : ";
cin>>a;
cout<<"Tan = "<<tan(a)<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 10: //sin inverse
cout<<"Enter the number : ";
cin>>a;
cout<<"Inverse of Sin = "<<asin(a)*180.0/pi<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 11: //cos inverse
cout<<"Enter the number : ";
cin>>a;
cout<<"Inverse of Cos = "<<acos(a)*180.0/pi<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 12: //tan inverse
cout<<"Enter the number : ";
cin>>a;
cout<<"Inverse of tan = "<<atan(a)*180.0/pi<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 13: //log
cout<<"Enter the number : ";
cin>>a;
cout<<"Log = "<<log(a)<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 14: //log 10
cout<<"Enter the number : ";
cin>>a;
cout<<"Log with base 10 = "<<log10(a)<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 15:{
int a;
cout<<"Enter the number:"<<endl;
cin>>a;
cout<<"The answer is"<<" "<<sqrt(a)<<endl;
break;
}
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 16:
int a;
cout << "Enter the number : ";
cin >> a;
if (a < 0){
cout << a << " is not a positive integer." << endl;
}
else
{
cout << "The binary form of " << a << " is ";
binary(a);
cout << endl;
}
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
case 17:
int r;
cout<<"Enter the radius"<<endl;
cin>>r;
cout<<"The area is"<<pi*r*r<<endl;
break;
//------------x------------------------------------------------------x----------------------------------------------------x------------------x
default:
cout<<"Wrong Input"<<endl;
}
}
int factorial(int n)
{
if(n > 1)
return n*factorial(n - 1);
else
return 1;
}
int exponent(int a, int b){
int result=1;
if(b==0){
result=1;
}
else{
for(int i=0;i<b;i++){
result=result*a;
}
}
return result;
}
void binary(int m){
int rem;
if (m <= 1)
{
cout << m;
return;
}
rem=m%2;
binary(m/2);
cout << rem;
}
/*
Functions to be added-
18.) Binary to Decimal
19.) Decimal to Hexadecimal
20.) Powers of e
*/