?? main.cpp
字號:
//Main.cpp
#include <iostream>
#include <conio.h>
#include "Expression.h"
using namespace std;
int main(void){
char c[80];
cout<<"STRUCTURE\n"
<<"This program can solve simple formula \n"
<<"by adder, subtraction, multiplication and division, \n"
<<"whose operands are reals, including minus reals.\n\n";
cout<<"Please iuput a expresion by the end of '='\n";
cin>>c;
Expression ex(c);
cout<<"The result is "<<ex.calPostExpression()<<endl;
cout<<"Press any key to quit\n";
getch();
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -