-
Notifications
You must be signed in to change notification settings - Fork 0
/
Powermath.cpp
558 lines (541 loc) · 11.3 KB
/
Powermath.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
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
#include<bits/stdc++.h>
#include<windows.h>
#define N_OPTR 9
using namespace std;
string ver = "v1.2.0";
int itime=0;
int pt=0;
int verf=rand();
stack<float> opnd;//存储数字
stack<char> optr;//存储字符
typedef enum { //通过枚举给每一个运算符一个编号
ADD, SUB, MUL, DIV, POW, FAC, L_P, R_P, EOE
} Operator;
const char pri[N_OPTR][N_OPTR] = { //运算符优先级表
/* |-------------------- 当 前 运 算 符 --------------------| */
/* + - * / ^ ! ( ) \0 */
/* -- + */ '>', '>', '<', '<', '<', '<', '<', '>', '>',
/* | - */ '>', '>', '<', '<', '<', '<', '<', '>', '>',
/* 栈 * */ '>', '>', '>', '>', '<', '<', '<', '>', '>',
/* 顶 / */ '>', '>', '>', '>', '<', '<', '<', '>', '>',
/* 运 ^ */ '>', '>', '>', '>', '>', '<', '<', '>', '>',
/* 算 ! */ '>', '>', '>', '>', '>', '>', ' ', '>', '>',
/* 符 ( */ '<', '<', '<', '<', '<', '<', '<', '=', ' ',
/* | ) */ ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
/* -- \0 */ '<', '<', '<', '<', '<', '<', '<', ' ', '='
};
Operator convert(char s) { //返回枚举类型
switch (s) {
case '+':
return ADD;
break;
case '-':
return SUB;
break;
case '*':
return MUL;
break;
case '/':
return DIV;
break;
case '^':
return POW;
break;
case '!':
return FAC;
break;
case '(':
return L_P;
break;
case ')':
return R_P;
break;
case '\0':
return EOE;
break;
}
}
bool isdigit(char s) { //判断读取到的字符是否是数字
if ((s - '0') <= 9 && (s - '0') >= 0) return true;
else return false;
}
float calcu(float popnd) { //阶乘单目运算
if (popnd == 1) return 1;
return popnd * calcu(popnd - 1);
}
float calcu(float a, char op, float b) { //普通双目运算
switch (op) {
case '+':
return (a + b);
break;
case '-':
return (a - b);
break;
case '*':
return (a*b);
break;
case '/':
return (a / b);
break;
case '^':
return (pow(a, b));
break;
default:
exit(-1);
break; //表达式错误,直接返回异常
}
}
char orderBetween(char s1, char s2) {
return pri[convert(s1)][convert(s2)];
}
void readNum(char *& s) { //处理数字,尤其是如23这种连在一块的数字
opnd.push(static_cast<float>(*s - '0'));
while (isdigit(*(++s))) {
float res = opnd.top() * 10 + *s - '0';
opnd.pop();
opnd.push(res);
}
if (*s != '.') return; //判断是否有小数点
float fration = 1; //进行小数点后面运算
while (isdigit(*(++s))) {
float res2 = opnd.top() + (*s - '0')*(fration /= 10);
opnd.pop();
opnd.push(res2);
}
}
float evalue(char *s) {
optr.push('\0'); //这个‘/0’与字符串末尾‘/0’呼应
while (!optr.empty()) {
if (isdigit(*s)) {
readNum(s);
} else {
switch (orderBetween(optr.top(), *s)) { //不同优先级处理
case '<': {
optr.push(*s);
s++;
}
break;
case '>': {
char op = optr.top();
optr.pop();
if (op == '!') {
float popnd = opnd.top();
opnd.pop();
opnd.push(calcu(popnd));
} else {
float popnd1 = opnd.top();
opnd.pop();
float popnd2 = opnd.top();
opnd.pop();
opnd.push(calcu(popnd1, op, popnd2));
}
}
break;
case '=': {
optr.pop();
s++;
}
break;
default:
exit(-1);
}
}
}
return opnd.top();
}
int main();
void dis();
void init2() {
dis();
system("color 0a");
printf("请稍候\n");
printf(" |");
Sleep(100);
dis();
printf("请稍候\n");
printf(" / ");
Sleep(100);
dis();
printf("请稍候\n");
printf(" —");
Sleep(100);
dis();
printf("请稍候\n");
printf(" \\");
Sleep(100);
dis();
printf("请稍候\n");
printf(" |");
Sleep(100);
dis();
printf("请稍候\n");
printf(" / ");
Sleep(100);
dis();
printf("请稍候\n");
printf(" —");
Sleep(100);
dis();
printf("请稍候\n");
printf(" \\");
Sleep(100);
dis();
}
void init1() {
itime++;
if(itime>1) return;
system("color 0e");
for(int i=1; i<=1; i++) {
printf("请稍候\n");
printf(" |");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" / ");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" —");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" \\");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" |");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" / ");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" —");
Sleep(100);
system("cls");
printf("请稍候\n");
printf(" \\");
Sleep(100);
system("cls");
}
init2();
}
void dis() {
system("cls");
printf("____________________________________________________________\n");
printf(" POWERMATH\n");
printf("------------------------------------------------------------\n");
}
void dedis() {
system("cls");
printf("____________________________________________________________\n");
printf(" POWERMATH 调试模式\n");
printf("------------------------------------------------------------\n");
}
void eyyc( ) {
dis();
float a,b,c,d,e,f;
cout<<"请输入二元一次方程组\n"<<" ax+by+c=0\n"<<" dx+ey+f=0\n";
cout<<"a=";
cin>>a;
cout<<"b=";
cin>>b;
cout<<"c=";
cin>>c;
cout<<"d=";
cin>>d;
cout<<"e=";
cin>>e;
cout<<"f=";
cin>>f;
if(a*e==b*d) {
cout<<"方程组无解。\n";
system("pause");
} else {
cout<<"x="<<(b*f-e*c)/(a*e-b*d)<<endl;
cout<<"y="<<(a*f-d*c)/(b*d-a*e)<<endl;
system("pause");
}
main();
}
void yyec() {
dis();
float a,b,c,root1,root2;
cout<<"请输入一元二次方程的系数(a,b,c a^2*x+bx+c=0):"<<endl;
cin>>a>>b>>c;
if(a==0) {
cout<<"不是一个一元二次方程"<<endl;
system("pause");
main();
}
float t =b*b-4*a*c;
if(t<0) {
cout<<"方程没有实根"<<endl;
system("pause");
main();
}
if(t==0) { //判断议程是否有等根
root1=root2=-b/(2*a);
} else {
root1=(-b+sqrt(t))/(2*a);
root2=(-b-sqrt(t))/(2*a);
}
cout<<"方程的根为:"<<root1<<"和"<<root2<<endl;
system("pause");
system("cls");
main();
}
void yyyc() {
main();
}
void js() {
dis();
cout << "输入表达式:\n";
char opt[1024];
cin >> opt;
cout << evalue(opt) << endl;
system("pause");
main();
}
void fjzys() {
dis();
long long i,n;
printf("请输入需要分解质因数的数:");
scanf("%lld",&n);
printf("\n%lld=",n);
for(i=2; i<=n; i++) {
while(n!=i) {
if(n%i==0) {
printf("%lld*",i);
n=n/i;
} else break;
}
}
printf("%lld\n",n);
system("pause");
main();
}
void sum() {
dis();
cout << "请输入求和终点:";
long long n,i,sum=0;
cin >> n;
for(i=1; i<=n; i++)
sum+=i;
cout <<"求和结果:" << sum << endl;
system("pause");
main();
}
void update(string type) {
dis();
if(type=="system") {
cout << "查找新版本。。。\n";
Sleep(200);
cout << "更新中。。。\n";
Sleep(1000);
ver = "v1.2.1";
cout << " Powermath (c) 2017-2021 lijunhao2023.\n All Rights Reserved.\n";
system("pause");
cout << "当前版本: v1.2." << verf << endl;
system("pause");
return;
} else if(type=="gamecenter") {
}
}
void about() {
dis();
cout << "检查更新?(y/n)\n";
char up;
cin >> up;
verf=rand()%10;
if(up=='y') {
update("system");
}
if(up=='n') {
cout << " Powermath (c) 2017-2021 lijunhao2023.\n All Rights Reserved.\n";
system("pause");
cout << "当前版本: " << ver << endl;
system("pause");
}
main();
}
void de() {
dedis();
cout << " 1 打开cmd \n";
int dei;
cin >> dei;
switch(dei) {
case 1:
system("cmd");
break;
default:
break;
}
system("pause");
main();
}
void dbreg() {
dis();
printf("请在支持的认证Hexagon及Light设备上接收验证码。\n请输入:\n");
string dbin;
cin >> dbin;
if(dbin!="Light06") {
printf("密码错误.\n");
main();
} else de();
}
void debug() {
dis();
string sup;
printf("管理员:(双重认证)输入密码 :");
if(pt==3) {
cout << "超时.\n";
Sleep(500);
main();
} else cin >> sup;
if(sup!="8806") {
cout << "密码错误!";
Sleep(500);
pt++;
debug();
} else dbreg();
}
void game() {
dis();
cout << "欢迎来到PowerGame (c) Game Center.\n";
cout << "这里汇聚了由 lijunhao2023 从全网搜刮(bushi)来的各类小游戏.\n";
cout << "是否更新游戏数据库?(y\n) \n";
char ch;
cin >> ch;
if(ch=='y') ;
else if(ch=='n') ;
else {
cout << "?\n";
game();
}
}
void others() {
dis();
cout << " 1 显示斐波那契数列表 \n" <<
" 2 Game Center \n" <<
""
;
int opt;
cin >> opt;
switch(opt) {
case 2:
game();
default:
break;
}
main();
}
void colors() {
dis();
cout << " 1 绿色 \n" <<
" 2 蓝色 \n" <<
" 3 红色 \n" <<
" 4 \n"
;
int col;
cin >> col;
switch(col) {
case 1:
system("color 0a");
break;
case 2:
system("color 0b");
break;
case 3:
system("color 0c");
break;
default:
cout << "暂不支持此颜色。\n";
break;
}
system("pause");
main();
}
void settings() {
dis();
cout <<
" 1 颜色 \n" <<
" 2 \n" <<
" 3 \n"
;
int col;
cin >> col;
switch(col) {
case 1:
colors();
break;
default:
cout << "暂不支持。\n";
break;
}
system("pause");
main();
}
int main() {
srand(time(NULL));
system("mode con cols=60 lines=20");
system("title Powermath by lijunhao2023");
dis();
unsigned long long inp=0;
cout <<
" 1 解二元一次方程 \n" <<
" 2 解一元一次方程(未实现)\n" <<
" 3 解一元二次方程 \n" <<
" 4 基本计算 \n" <<
" 5 分解质因数 \n" <<
" 6 求和 \n" <<
" 97 其他功能 \n" <<
" 98 调试模式 \n" <<
" 99 设置 \n" <<
" 100 关于&更新&日志 \n" <<
" 101 退出 \n"
;
cin >> inp;
switch(inp) {
case 1:
eyyc();
break;
case 2:
yyyc();
break;
case 3:
yyec();
break;
case 4:
js();
break;
case 5:
fjzys();
break;
case 6:
sum();
break;
case 97:
others();
break;
case 98:
debug();
break;
case 99:
settings();
break;
case 100:
about();
break;
case 101:
system("pause");
PostMessage(GetConsoleWindow(),WM_QUIT,0,0);
exit(0);
default:
cout << "?\n";
Sleep(200);
main();
}
return 0;
}