- #include<iostream> //呼叫我們要使用的工具
- using namespace std; //將工具放進工具箱
- int main() //主程式
- {
- int x=20;
- int y=10;
- 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;
- }
複製代碼 |