本帖最後由 蔡季樺 於 2015-7-3 11:35 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=44444444444444444444, y=2222222222222222222222;
- cout<<"當x的值為"<<x<<",y的值為"<<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;
- cout<<"x%y="<<x%y<<endl;
- system("pause");
- return 0;
- }
複製代碼 |