標題:
switch 判斷式(二) 簡易型計算機
[打印本頁]
作者:
歐柏罕
時間:
2017-11-18 17:42
標題:
switch 判斷式(二) 簡易型計算機
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num1 = 0;
int num2 = 0;
char temp; // 字串string char
cout<<"請輸入第一個數字: "<<endl;
cin>>num1;
cout<<"請輸入+ - * / : "<<endl;
cin>>temp;
cout<<"請輸入第二個數字: "<<endl;
cin>>num2;
switch(temp) //switch判斷 (參數)
{
case '+': // '字串'
cout << num1 << " + " << num2 << " = " << num1+num2 << endl;
break;
case '-': // '字串'
???
break;
case '*': // '字串'
???
break;
case '/': // '字串'
???
break;
default: // 預設值
cout<<"輸入錯誤!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
佳
時間:
2017-11-18 17:56
此帖僅作者可見
作者:
蔡佳承
時間:
2017-11-18 18:00
此帖僅作者可見
作者:
黃安立
時間:
2017-11-18 18:03
此帖僅作者可見
作者:
戴嘉禾
時間:
2017-11-18 18:06
此帖僅作者可見
作者:
顏詢
時間:
2017-11-18 18:12
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2