-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
1462 lines (1361 loc) · 38.8 KB
/
Copy pathmain.cpp
File metadata and controls
1462 lines (1361 loc) · 38.8 KB
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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include"matrix.h"
using namespace std;
/*****用户参数*****/
int flag=0;//flag=0:frac;flag=1:dec;
int step=0;//中间步骤
/******************/
inline int getint()//过滤非正常字符 安全读数
{
char ch;
int p=0;
while ((ch=getchar())<'0'||ch>'9');
p*=10;p+=ch-'0';
while ((ch=getchar())>='0'&&ch<='9') p*=10,p+=ch-'0';
return p;
}
const int MAXN=105;
class frac//自定义分数类 A/B
{
protected:
long long A,B;
public:
int sgn(int a){return a<0?-1:1;}//三位运算符
long long abs(long long a){return a>0?a:-a;}
int gcd(int a,int b){return a%b?gcd(b,a%b):b;}
frac(){A=0,B=1;};
frac(int _A,int _B):A(_A),B(_B){cutdown();}
frac(int q):A(q),B(1){}
void init(){A=0,B=1;}
bool is_cut(){return A*B==0||gcd(A,B)==1;}//是否最简
void cutdown()//化简分数
{
if (B==0) return;
if (A==0){B=1;return;}
if (is_cut()) return;
int r=gcd(abs(A),abs(B));
A=A/r,B=B/r;
}
/****************重载运算符*******************/
/*****plus*****/
frac operator + (const frac &p)
{
return frac(A*p.B+p.A*B,B*p.B);
}
frac operator + (const int &p)
{
return (*this)+frac(p);
}
friend frac operator + (const int &p,const frac &q)
{
return frac(p)+q;
}
/*****minus*****/
frac operator - (const frac &p)
{
return frac(A*p.B-p.A*B,B*p.B);
}
frac operator - (const int &p)
{
return (*this)-frac(p);
}
friend frac operator - (const int &p,const frac &q)
{
return frac(p)-q;
}
/*****mult*****/
frac operator * (const frac &p)
{
return frac(A*p.A,B*p.B);
}
frac operator * (const int &p)
{
return (*this)*frac(p);
}
friend frac operator * (const int &p,const frac &q)
{
return frac(p)*q;
}
/*****div*****/
frac operator / (const frac &p)
{
return frac(A*p.B,B*p.A);
}
frac operator / (const int &p)
{
return (*this)/frac(p);
}
friend frac operator / (const int &p,const frac &q)
{
return frac(p)/q;
}
/*****logic*****/
bool operator ()()
{
return (bool)A;
}
bool operator !()
{
return !(*this)();
}
bool operator == (const frac &p)
{
return !(*this-p);
}
bool operator == (const int &q)
{
return !(*this-q);
}
friend bool operator == (const int &q,const frac &p)
{
return !(q-p);
}
bool neg()
{
return A*B<0;
}
bool operator < (const frac &p)
{
return (*this-p).neg();
}
bool operator < (const int &p)
{
return (*this-p).neg();
}
friend bool operator < (const int &q,const frac &p)
{
return (q-p).neg();
}
/****************IO******************/
void operator = (const frac &p)
{
A=p.A,B=p.B;
cutdown();
}
void operator = (const int &q)
{
*this=frac(q);
}
void get()
{
int q=getint();
*this=q;
}
void output()
{
if (!flag)
{
cutdown();
B!=1LL?printf("%lld/%lld",sgn(A*B)*abs(A),abs(B)):printf("%lld",A);
}
else printf("%f",1.0*A/B);
}
}p;
class Matrix
{
protected:
int r,c;
int size,sq;
frac data[MAXN][MAXN];
public:
Matrix():r(0),c(0),size(0),sq(0){}
Matrix(int _r,int _c):r(_r),c(_c){size=r*c;sq=(r==c);}
Matrix(int _r,int _c,int k):r(_r),c(_c)
{
size=r*c;sq=(r==c);
for (int i=1;i<=r;i++) data[i][i]=k;
}
frac* operator [](int pos){return data[0]+MAXN*pos;};//重载双下标运算符
/***************矩阵加法****************/
Matrix* operator + (Matrix M)
{
if (r==M.r&&c==M.c)
{
Matrix* temp=new Matrix(r,c);
for (int i=1;i<=r;i++)
{
for (int j=1;j<=c;j++)
{
(*temp)[i][j]=(*this)[i][j]+M[i][j];
}
}
return temp;
}
}
/***************矩阵减法****************/
Matrix* operator - (Matrix M)
{
if (r==M.r&&c==M.c)
{
Matrix* temp=new Matrix(r,c);
for (int i=1;i<=r;i++)
{
for (int j=1;j<=c;j++)
{
(*temp)[i][j]=(*this)[i][j]-M[i][j];
}
}
return temp;
}
}
/***************数乘****************/
Matrix* operator * (int q)
{
Matrix* temp=new Matrix(r,c);
for (int i=1;i<=r;i++)
{
for (int j=1;j<=c;j++)
{
(*temp)[i][j]=(*this)[i][j]*q;
}
}
return temp;
}
friend Matrix* operator * (int q,Matrix &M)
{
Matrix* temp=new Matrix(M.r,M.c);
for (int i=1;i<=M.r;i++)
{
for (int j=1;j<=M.c;j++)
{
(*temp)[i][j]=M[i][j]*q;
}
}
return temp;
}
/****************矩阵乘法*****************/
Matrix* operator * (Matrix &M)
{
if (c==M.r)
{
Matrix* temp=new Matrix(r,M.c);
for (int i=1;i<=r;i++)
{
for (int j=1;j<=M.c;j++)
{
for (int k=1;k<=c;k++)
{
(*temp)[i][j]=(*temp)[i][j]+(*this)[i][k]*M[k][j];
}
}
}
return temp;
}
}
/****************初等变换*****************/
void swap_r(int a,int b)
{
for (int i=1;i<=c;i++) swap(data[a][i],data[b][i]);
}
void swap_c(int a,int b)
{
for (int i=1;i<=r;i++) swap(data[i][a],data[i][b]);
}
void mult_r(int _r,frac p)
{
for (int i=1;i<=c;i++) data[_r][i]=data[_r][i]*p;
}
void mult_c(int _c,frac p)
{
for (int i=1;i<=r;i++) data[i][_c]=data[i][_c]*p;
}
void add_r(int target,int bullet)
{
for (int i=1;i<=c;i++) data[target][i]=data[target][i]+data[bullet][i];
}
void add_r(int target,int bullet,frac speed)
{
for (int i=1;i<=c;i++) data[target][i]=data[target][i]+data[bullet][i]*speed;
}
void add_c(int target,int bullet)
{
for (int i=1;i<=r;i++) data[i][target]=data[i][target]+data[i][bullet];
}
void add_c(int target,int bullet,frac speed)
{
for (int i=1;i<=r;i++) data[i][target]=data[i][target]+data[i][bullet]*speed;
}
/*****************行列式求值****************/
frac det ()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
Matrix *temp=new Matrix(r,c,1);//备份原矩阵
*temp=*this;
frac D(1);
if (!sq) return frac(-32767);
for (int i=1;i<r;i++)
{
if (data[i][i]==0)
{
for (int j=i+1;j<=r;j++)
{
if(!(data[j][i]==0))
{
swap_r(i,j);
D=D*-1;
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
break;
}
}
}
if (data[i][i]==0) return frac(0);
for (int j=i+1;j<=r;j++)
{
add_r(j,i,data[j][i]/data[i][i]*-1);
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
}
}
for (int i=1;i<=r;i++)
{
D=D*data[i][i];
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
}
*this=*temp;//恢复
return D;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
fout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
/******************矩阵求逆******************/
Matrix* rev()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
Matrix *ans=new Matrix(r,c,1);//创建矩阵指针ans,指针指向一个矩阵的存储空间,
//其中调用Matrix(r,c,1)的矩阵创建函数。
Matrix *temp=new Matrix(r,c,1);//指针temp也指向ans一样的矩阵,但存储空间不同
//备份原矩阵
*temp=*this;//将temp指针指向this指针指向的存储空间。
for (int i=1;i<=r;i++)
{
if (data[i][i]==0)
{
for (int j=i+1;j<=r;j++)//初始化一个j循环,从第二行开始,到r行(j随i变)
{
if(!(data[j][i]==0))//如果元素(j,i)=0就不执行该if语句
{
swap_r(i,j);//调用函数
ans->swap_r(i,j);//指向行交换矩阵
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();//输出行交换矩阵
putchar('\n');//打印输出换行符
ans->output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
break;
}
}
}
for (int j=i+1;j<=r;j++)
{
ans->add_r(j,i,data[j][i]/data[i][i]*-1);//注意这里有顺序问题!!!
add_r(j,i,data[j][i]/data[i][i]*-1);//行顺序列顺序迭代
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();
putchar('\n');
ans->output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
}
}
for (int i=r;i>1;i--)//与上面是逆序循环
{
for (int j=1;j<i;j++)
{
ans->add_r(j,i,data[j][i]/data[i][i]*-1);
add_r(j,i,data[j][i]/data[i][i]*-1);//行倒序列顺序迭代
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();
putchar('\n');
ans->output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
}
}
for (int i=1;i<=r;i++)
{
ans->mult_r(i,1/data[i][i]);
mult_r(i,1/data[i][i]);
if (step)
{
printf("----------------------------\n");
fout<<"----------------------------\n";
output();
putchar('\n');
ans->output();
printf("----------------------------\n");
fout<<"----------------------------\n";
}
}
*this=*temp;//恢复
return ans;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
/*******************IO********************/
void get(int _r,int _c)
{
r=_r,c=_c;
size=r*c;
sq=r==c;
for (int i=1;i<=r;i++)
{
for (int j=1;j<=c;j++)
{
data[i][j].get();
}
}
}
void output()
{
for (int i=1;i<=r;i++)
{
for (int j=1;j<=c;j++)
{
(*this)[i][j].output();
putchar(' ');
}
putchar('\n');
}
}
}M,N;
int pluss()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
int r,c,flag;
cout<<"#请输入计算类型"<<endl;
cout<<"1.矩阵加法"<<endl;
cout<<"2.矩阵减法"<<endl;
cout<<"0.回到上一级"<<endl;
fout<<"#请输入计算类型"<<endl;
fout<<"1.矩阵加法"<<endl;
fout<<"2.矩阵减法"<<endl;
fout<<"0.回到上一级"<<endl;
flag=getint();
if(!flag) return 0;
if (flag<0||flag>2)
{
cout<<"#输入不合法!!!"<<endl;
fout<<"#输入不合法!!!"<<endl;
return 1;
}
Matrix* A=new Matrix;
Matrix* B=new Matrix;
cout<<"#请输入两个矩阵的行数和列数"<<endl;
fout<<"#请输入两个矩阵的行数和列数"<<endl;
cin>>r>>c;
cout<<"#请输入第一个矩阵,数字之间可用任意非数字字符分隔"<<endl;
fout<<"#请输入第一个矩阵,数字之间可用任意非数字字符分隔"<<endl;
A->get(r,c);
cout<<"#请输入第二个矩阵,数字之间可用任意非数字字符分隔"<<endl;
fout<<"#请输入第二个矩阵,数字之间可用任意非数字字符分隔"<<endl;
B->get(r,c);
cout<<"#计算结果是"<<endl;
fout<<"#计算结果是"<<endl;
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
if (flag==1) ((*A)+(*B))->output();
if (flag==2) ((*A)-(*B))->output();
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
cout<<"#谢谢使用!"<<endl;
return 1;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
int num()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
int r,c,q,flag;
cout<<"#请输入计算类型"<<endl;
cout<<"1.矩阵数乘"<<endl;
cout<<"0.回到上一级"<<endl;
fout<<"#请输入计算类型"<<endl;
fout<<"1.矩阵数乘"<<endl;
fout<<"0.回到上一级"<<endl;
flag=getint();
if(!flag) return 0;
if (flag<0||flag>1)
{
cout<<"#输入不合法!!!"<<endl;
fout<<"#输入不合法!!!"<<endl;
return 1;
}
Matrix* A=new Matrix;
cout<<"#请输入矩阵的行数和列数"<<endl;
fout<<"#请输入矩阵的行数和列数"<<endl;
cin>>r>>c;
cout<<"#请输入一个数"<<endl;
fout<<"#请输入一个数"<<endl;
cin>>q;
cout<<"#请输入矩阵,数字之间可用任意非数字字符分隔"<<endl;
fout<<"#请输入矩阵,数字之间可用任意非数字字符分隔"<<endl;
A->get(r,c);
cout<<"#计算结果是"<<endl;
fout<<"#计算结果是"<<endl;
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
((*A) * q)->output();
putchar('\n');
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
cout<<"#谢谢使用!"<<endl;
fout<<"#谢谢使用!"<<endl;
return 1;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
int mul()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
int r1,c1,r2,c2,flag;
cout<<"#请输入计算类型"<<endl;
cout<<"1.矩阵乘法"<<endl;
cout<<"0.回到上一级"<<endl;
fout<<"#请输入计算类型"<<endl;
fout<<"1.矩阵乘法"<<endl;
fout<<"0.回到上一级"<<endl;
flag=getint();
if(!flag) return 0;
if (flag!=1)
{
cout<<"#输入不合法!!!"<<endl;
fout<<"#输入不合法!!!"<<endl;
return 1;
}
Matrix* A=new Matrix;
Matrix* B=new Matrix;
cout<<"#请输入第一个矩阵的行数和列数"<<endl;
fout<<"#请输入第一个矩阵的行数和列数"<<endl;
cin>>r1>>c1;
cout<<"#请输入第一个矩阵,数字之间可用任意非数字字符分隔"<<endl;
fout<<"#请输入第一个矩阵,数字之间可用任意非数字字符分隔"<<endl;
A->get(r1,c1);
cout<<"#请输入第二个矩阵的行数和列数"<<endl;
fout<<"#请输入第二个矩阵的行数和列数"<<endl;
cin>>r2>>c2;
if (c1!=r2)
{
cout<<"#输入矩阵不可相乘!!!"<<endl;
fout<<"#输入矩阵不可相乘!!!"<<endl;
return 1;
}
cout<<"#请输入第二个矩阵,数字之间可用任意非数字字符分隔"<<endl;
B->get(r2,c2);
cout<<"#计算结果是"<<endl;
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
((*A)*(*B))->output();
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
cout<<"#谢谢使用!"<<endl;
return 1;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
int Det()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
int r,c,flag;
cout<<"#请输入计算类型"<<endl;
cout<<"1.矩阵行列式"<<endl;
cout<<"0.回到上一级"<<endl;
fout<<"#请输入计算类型"<<endl;
fout<<"1.矩阵行列式"<<endl;
fout<<"0.回到上一级"<<endl;
flag=getint();
if(!flag) return 0;
if (flag<0||flag>1)
{
cout<<"#输入不合法!!!"<<endl;
fout<<"#输入不合法!!!"<<endl;
return 1;
}
Matrix* A=new Matrix;
cout<<"#请输入矩阵的行数和列数"<<endl;
fout<<"#请输入矩阵的行数和列数"<<endl;
cin>>r>>c;
cout<<"#请输入矩阵,数字之间可用任意非数字字符分隔"<<endl;
fout<<"#请输入矩阵,数字之间可用任意非数字字符分隔"<<endl;
A->get(r,c);
cout<<"#计算结果是"<<endl;
fout<<"#计算结果是"<<endl;
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
A->det().output();
putchar('\n');
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
cout<<"#谢谢使用!"<<endl;
fout<<"#谢谢使用!"<<endl;
return 1;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
int Rev()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
int r,c,flag;
cout<<"#请输入计算类型"<<endl;
cout<<"1.矩阵求逆"<<endl;
cout<<"0.回到上一级"<<endl;
fout<<"#请输入计算类型"<<endl;
fout<<"1.矩阵求逆"<<endl;
fout<<"0.回到上一级"<<endl;
flag=getint();
if(!flag) return 0;
if (flag<0||flag>1)
{
cout<<"#输入不合法!!!"<<endl;
fout<<"#输入不合法!!!"<<endl;
return 1;
}
Matrix* A=new Matrix;
Matrix* B=new Matrix;
cout<<"#请输入矩阵的行数和列数(行数与列数要相同)"<<endl;
fout<<"#请输入矩阵的行数和列数(行数与列数要相同)"<<endl;
cin>>r>>c;
cout<<"#请输入矩阵,数字之间可用任意非数字字符分隔"<<endl;
fout<<"#请输入矩阵,数字之间可用任意非数字字符分隔"<<endl;
A->get(r,c);
int step_temp=step;
step=0;
if (A->det()==0)
{
cout<<"#行列式为零,输入不合法!!!"<<endl;
fout<<"#行列式为零,输入不合法!!!"<<endl;
step=step_temp;
return 1;
}
step=step_temp;
cout<<"#计算结果是"<<endl;
fout<<"#计算结果是"<<endl;
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
A->rev()->output();
putchar('\n');
printf("------------------------------------------------\n");
fout<<"------------------------------------------------\n";
cout<<"#谢谢使用!"<<endl;
fout<<"#谢谢使用!"<<endl;
return 1;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
int setting()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
cout<<"#请输入设置类型"<<endl;
cout<<"1.分数输出"<<endl;
cout<<"2.小数输出"<<endl;
cout<<"3.输出中间步骤"<<endl;
cout<<"4.不输出中间步骤"<<endl;
cout<<"0.回到上一级"<<endl;
fout<<"#请输入设置类型"<<endl;
fout<<"1.分数输出"<<endl;
fout<<"2.小数输出"<<endl;
fout<<"3.输出中间步骤"<<endl;
fout<<"4.不输出中间步骤"<<endl;
fout<<"0.回到上一级"<<endl;
int Flag=getint();
if(!Flag) return 0;
if (Flag<0||Flag>5)
{
cout<<"#输入不合法!!!"<<endl;
fout<<"#输入不合法!!!"<<endl;
return 1;
}
if (Flag==1) flag=0;
if (Flag==2) flag=1;
if (Flag==3) step=1;
if (Flag==4) step=0;
cout<<"#设置更新成功"<<endl;
fout<<"#设置更新成功"<<endl;
return 1;
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
return 0 ;
fout.close();
}
/*******************线性方程组求解*********************/
//解AX=B
//解线性方程组
//函数定义区;
void print_menu()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
system("cls");
cout<<"------------方程系数和常数矩阵表示如下:\n";
fout<<"------------方程系数和常数矩阵表示如下:\n";
for(int j=0;j<lenth;j++)
{
cout<<"系数"<<j+1<<'\t';
fout<<"系数"<<j+1<<'\t';
}
cout<<"常数";
cout<<endl;
fout<<"常数";
fout<<endl;
for(int i=0;i<lenth;i++)
{
int j=0;
for(;j<lenth;j++)
cout<<setw(8)<<setiosflags(ios::left)<<a[i][j];
cout<<b[i]<<endl;
fout<<setw(8)<<setiosflags(ios::left)<<a[i][j];
fout<<b[i]<<endl;
}
//基于当前系统的当前时间
time_t now = time(0);
cout<< "1970 到目前经过秒数:"<< now <<endl;
tm *ltm = localtime(&now);
//输出 tm 结构的各个组成部分
cout<<"年: " << 1900 + ltm->tm_year <<endl;
cout<<"月: " << 1 + ltm->tm_mon <<endl;
cout<<"日: " << ltm->tm_mday <<endl;
cout<<"时间;" << ltm->tm_hour <<":";
cout<< ltm->tm_min <<":";
cout<< ltm->tm_sec <<endl;
fout<<"年: " << 1900 + ltm->tm_year <<endl;
fout<<"月: " << 1 + ltm->tm_mon <<endl;
fout<<"日: " << ltm->tm_mday <<endl;
fout<<"时间;" << ltm->tm_hour <<":";
fout<< ltm->tm_min <<":";
fout<< ltm->tm_sec <<endl;
fout.close();
}
void input()
{
ofstream fout;
string miss_Z ="C:\\Users\\Zada\\Desktop\\M14\\daily.txt";
fout.open(miss_Z,ios::app);
int i,j;
cout<<"方程的个数:";
fout<<"方程的个数:";
cin>>lenth;
if(lenth>Number)
{
cout<<"It is too big.\n";
fout<<"It is too big.\n";
return;
}
x=new char[lenth];
for(i=0;i<lenth;i++)
x[i]='a'+i;
//输入方程矩阵;
//提示如何输入;
cout<<"====================================================\n";
cout<<"请在每个方程里输入"<<lenth<<"系数和一个常数:\n";
cout<<"例:\n方程:a";
fout<<"====================================================\n";
fout<<"请在每个方程里输入"<<lenth<<"系数和一个常数:\n";
fout<<"例:\n方程:a";
for(i=1;i<lenth;i++)
{
cout<<"+"<<i+1<<x[i];
fout<<"+"<<i+1<<x[i];
}
cout<<"=10\n";
cout<<"应输入:";
fout<<"=10\n";
fout<<"应输入:";
for(i=0;i<lenth;i++)