Board logo

標題: 五則運算 [打印本頁]

作者: tonyh    時間: 2011-9-3 17:18     標題: 五則運算

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x=20;
  6.     int y=10;
  7.     cout<<"x+y="<<x+y<<endl;
  8.     cout<<"x-y="<<x-y<<endl;
  9.     cout<<"x*y="<<x*y<<endl;
  10.     cout<<"x/y="<<x/y<<endl;
  11.     cout<<"x%y="<<x%y<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 逸瑋    時間: 2011-9-3 17:18

提示: 作者被禁止或刪除 內容自動屏蔽
作者: 漢文    時間: 2011-9-3 17:18

提示: 作者被禁止或刪除 內容自動屏蔽
作者: 泓鈞    時間: 2011-9-3 17:19

提示: 作者被禁止或刪除 內容自動屏蔽
作者: 炫宗    時間: 2011-9-3 17:19

提示: 作者被禁止或刪除 內容自動屏蔽
作者: t2364705    時間: 2011-9-3 17:20

  1. #include<iostream>  //呼叫我們要使用的工具
  2. using namespace std;  //將工具放進工具箱
  3. int main()  //主程式
  4. {
  5. int x=20;
  6. int y=10;
  7. cout<<x<<"+"<<y<<"="<<x+y<<endl;
  8. cout<<x<<"-"<<y<<"="<<x-y<<endl;
  9. cout<<x<<"*"<<y<<"="<<x*y<<endl;
  10. cout<<x<<"/"<<y<<"="<<x/y<<endl;
  11. cout<<x<<"%"<<y<<"="<<x%y<<endl;

  12. system("pause");
  13. return 0;
  14. }
複製代碼

作者: 逸瑋    時間: 2011-9-3 17:21

提示: 作者被禁止或刪除 內容自動屏蔽
作者: t8155745    時間: 2011-9-3 17:22

  1. #include<iostream>     //呼叫我要使用的工具
  2. using namespace std;   //將工具放在工具箱  
  3. int main()     //主程式
  4. {
  5.      
  6.     int x=20;
  7.     int y=10;
  8.     cout <<x<<"+"<<y<<"="<<x+y<< endl;
  9.     cout <<x<<"-"<<y<<"="<<x-y<< endl;   
  10.     cout <<x<<"*"<<y<<"="<<x*y<< endl;   
  11.     cout <<x<<"/"<<y<<"="<<x/y<< endl;
  12.     cout <<x<<"%"<<y<<"="<<x%y<< endl;
  13.      system("pause");
  14. return 0;   
  15.    
  16. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2