本帖最後由 李泳霖 於 2022-2-10 09:17 編輯
實作如下之執行畫面:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main() //int ---> integer 整數
- {
- cout<<"x+y="<<x+y<<endl;
- cout<<"x-y="<<x-y<<endl;
- cout<<"x*y="<<x*y<<endl;
- cout<<"x/y="<<x/y<<endl;
- cout<<"x%y="<<x%y<<endl;
- system("pause");
- return 0;
- }
複製代碼 |