📄 main_24.cpp
字号:
#include"alg_Ans.h"
void main()
{
vector<double>Input;
string Exp;
int Con_record = 0;
int Ans = 24;
cout<<"How many number do you want to input..."<<endl;
cin>>Con_record;
cout<<"What is the answer do you want to get.."<<endl;
cin>>Ans;
cout<<"Input "<<Con_record<<" number..."<<endl;
for (int i = 0; i < Con_record; i++)
{
int x;
cin >> x;
Input.push_back(x);
}
Rotate(Input,Exp,Ans,Con_record);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -