-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
157 lines (139 loc) · 2.53 KB
/
main.cpp
File metadata and controls
157 lines (139 loc) · 2.53 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
#include<iostream>
#include<stdlib.h>
#include<iomanip>
#include"Sort.h"
#include"Calculator.h"
#include"Equation.h"
#include"Matrix.h"
#include"Integrator.h"
#include"Search.h"
//#include"Complex.h"
using namespace std;
int main()
{
char choice=' ';
while(choice!='0')
{
Calculator a;
Integrator b;
Matrix c;
Sort d;
Search e;
cout <<endl<<endl<<"\t\t\t欢迎进入我的matlab\n\n\n";
cout <<"\t\t\t1 四则计算\n\n\t\t\t2 积分运算 \n\n\t\t\t3 矩阵运算\n\n\t\t\t4 排序运算\n\n\t\t\t5 查找运算\n\n\t\t\t0 离 开"<<endl;
cin >> choice;
switch (choice)
{
case '1':
//Calculator a;
char choice1;
//while(choice!=0)
//{
cout<<"1 简单四则运算"<<endl;
cout<<"2 复数四则运算"<<endl;
cout<<"3 分数四则运算"<<endl;
cout<<"0 离 开"<<endl;
cin>>choice1;
switch(choice1)
{
case '1':
a.display();
break;
case '2':
//a.display_complex();
display();
break;
case '3':
a.display_fraction();
break;
case '0':
cout<<"四则运算结束!"<<endl;
exit(0);
break;
default:
if(choice1 != '0')
{
cout<<"输入错误,请重新输入:"<<endl;
break;
}
//}
}
break;
case '2':
//Integrator b;
b.display();
break;
case '3':
//Matrix c;
c.display();
break;
case '4':
//Sort d;
d.display();
/*int choice_2=1;
while(choice_2!=0)
{
system("cls");
d.set();
d.Sort_1();
d.print();
cout<<"结束请按0,继续请按1"<<endl;
cin>>choice_2;
}*/
break;
case '5':
//Search e;
e.display();
break;
default:
if(choice != '0')
{
cout<<"输入错误,请重新输入:"<<endl;
break;
}
}
}
/* Sort a;
a.set();
a.Sort_1();
a.print();
Calculator b;
b.display();
Equation a;
a.set();
a.get_equation();
a.print();
Matrix a;
a.display();
a.Scalar();
a.Subtraction();
a.Add();
a.Transposition();
a.Multiplication();
Integrator c;
c.display();*/
/*Search a;
a.display();
Complex a(1,1);
Complex b(2,2);
Complex c;
c=a+b;
c.display();*/
/*Complex a(1,1),b(2,2);
Complex c=a+b;
cout<<c<<endl;
Complex d=a-b;
cout<<d<<endl;
Complex e=a*b;
cout<<e<<endl;
Complex f=a/b;
cout<<f<<endl;
Complex g;
g.set();
cout<<g;
Calculator a;
a.set_complex();
a.display_complex();*/
system("pause");
return 0;
}