返回列表 發帖

switch 判斷式(二) 簡易型計算機

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int num1 = 0;
  7.     int num2 = 0;
  8.     char temp; // 字串string char
  9.     cout<<"請輸入第一個數字: "<<endl;
  10.     cin>>num1;
  11.     cout<<"請輸入+ - * /   : "<<endl;
  12.     cin>>temp;
  13.     cout<<"請輸入第二個數字: "<<endl;
  14.     cin>>num2;
  15.    
  16.     switch(temp)                  //switch判斷 (參數)
  17.     {
  18.         case '+':           //  '字串'
  19.              cout << num1 << " + " << num2 << " = " << num1+num2 << endl;  
  20.              break;               
  21.         case '-':           //  '字串'
  22.              ???
  23.              break;   
  24.         case '*':           //  '字串'
  25.              ???
  26.              break;
  27.         case '/':           //  '字串'
  28.              ???  
  29.              break;
  30.             
  31.         default:  // 預設值
  32.              cout<<"輸入錯誤!"<<endl;               
  33.     }
  34.     system("pause");
  35.     return 0;
  36. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表