Board logo

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

作者: tonyh    時間: 2016-8-27 14:48     標題: 五則運算 (一)

本帖最後由 tonyh 於 2019-4-20 11:30 編輯

+    加
-     減
*    乘
/     除
%   取餘數


  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10, y=3;
  7.     cout<<"當x等於"<<x<<", y等於"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 許紘誌    時間: 2016-8-27 15:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int x=10,y=3;
  7.   cout<<"當x的值為"<<x<<",y的值為"<<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.   cout<<"x%y="<<x%y<<endl;
  13.   system("pause");
  14.   return 0;   
  15. }
複製代碼

作者: 曾彥翔    時間: 2016-8-27 15:01

本帖最後由 曾彥翔 於 2016-9-3 14:26 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x, y;
  7.     cout<<"請輸入x的值:";
  8.     cin>>x;
  9.     cout<<"請輸入y的值:";
  10.     cin>>y;
  11.     cout<<x<<"+"<<y<<"="<<x+y<<endl;
  12.     cout<<x<<"-"<<y<<"="<<x-y<<endl;
  13.     cout<<x<<"*"<<y<<"="<<x*y<<endl;
  14.     cout<<x<<"/"<<y<<"="<<x/y<<endl;
  15.     cout<<x<<"%"<<y<<"="<<x%y<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 譚暐霖    時間: 2016-8-27 15:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=0, y=1;
  7.     cout<<"當x為"<<x<<"y為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.    
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 黃宥鈞    時間: 2016-8-27 15:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=11,y=12;
  7.     cout<<"當x為"<<x<<",y為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 吳晉榕    時間: 2016-8-27 15:06

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10, y=3;
  7.     cout<<"當x="<<x<<",y="<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 洪榜蔓    時間: 2016-8-27 15:09

  1. #include<iostream>     
  2. #include<cstdlib>      
  3. using namespace std;   
  4. int main()   
  5. {
  6.     int x=80,y=5;
  7.     cout<<"當x="<<x<<",y="<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");        
  14.     return 0;               
  15. }
複製代碼

作者: 蔡幸融    時間: 2016-8-27 15:11

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10,y=3;
  7.     cout<<"當x="<<x<<",y="<<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.     cout<<"x%y="<<x%y<<endl;
  13.       
  14.     system("pause");   
  15.     return 0;
  16. }   
複製代碼





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