本帖最後由 葉桔良 於 2022-8-20 18:35 編輯
使用 cin 讓使用者能自行指定 x 與 y 的值.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x, y;
- 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;
- }
複製代碼 |