本帖最後由 鄭繼威 於 2022-11-25 20:50 編輯
使用 cin 讓使用者能自行指定 x 與 y 的值.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //1.宣告2個變數
- int x, y;
- //2.輸出&輸入
- cout<<"請輸入x的值: ";
- cin>>x;
- cout<<"請輸入y的值: ";
- cin>>y;
- //五則運算
- 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;
- }
複製代碼 |