?? 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 + -