- #include<iostream> // input,output 所有的輸出輸入 ,stream=> 串流
- #include<cstdlib> // cstdlib =>
- using namespace std; // 定義程式的命名空間
- int main() // 程式進入點
- {
- // 四則運算
- int num =0;
- int num2 =0;
- string oper ="";
- cout << "請輸入第一個數字" << endl;
- cin >> num;
- cout << "請輸入第二個數字" << endl;
- cin >> num2;
-
- cout << "請輸入運算符號 + - * / " <<endl;
- cin>> oper;
-
- // if 條件判斷式
-
- if(oper == "+") // 要判斷的條件
- {
- cout << num+num2 << endl;
- // 當條件成立的時候要做的事情
- }
- else if (oper == "-")
- {
- cout << num-num2 << endl;
- }
- else if (oper == "*")
- {
- cout << num*num2 << endl;
- }
- else if (oper == "/")
- {
- cout << num/num2 << endl;
- }
- else
- {
- cout << "請輸入正確的符號" << endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |