本帖最後由 陳品肇 於 2019-1-28 15:30 編輯
試實作如下之執行畫面:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a ,b;
- cout<<"請輸入a:";
- cin>>a;
- cout<<"請輸入b:";
- cin>>b;
- cout<<"a+b="<<a+b<<endl;
- cout<<"a-b="<<a-b<<endl;
- cout<<"a*b="<<a*b<<endl;
- cout<<"a/b="<<a/b<<endl;
- cout<<"a%b="<<a%b<<endl; //取餘數
- system("pause");
- return 0;
- }
複製代碼 |