OJ期末刷題 Problem I: C/C++經典程式訓練3---模擬計算器
阿新 • • 發佈:2019-02-13
Description
簡單計算器模擬:輸入兩個整數和一個運算子,輸出運算結果;Input
第一行輸入兩個整數; 第二行輸入一個運算子(+、-、*、/);Output
輸出對兩個數運算後的結果;Sample Input
30 50
*
Sample Output
1500
程式碼:
#include <iostream> using namespace std; int main() { int a,b; double c; char d; cin>>a>>b; cin>>d; switch (d) { case '+': c=a+b; break; case '-': c=a-b; break; case '*': c=a*b; break; case '/': c=a/b; break; } cout<<c; return 0; }
執行結果:
學習心得:
好好學習 天天向上