Board logo

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

作者: tonyh    時間: 2019-7-8 14:16     標題: 五則運算

本帖最後由 tonyh 於 2019-7-28 20:54 編輯

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x=12,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. }
複製代碼

作者: 葉又誠    時間: 2019-7-8 14:34

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

作者: 陳龍華    時間: 2019-7-8 14:36

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x=12,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. }
複製代碼

作者: 李宇澤    時間: 2019-7-8 14:38

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    //int x;
    //int y;
    int x=23,y=7;
   
    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;
}
作者: 張博程    時間: 2019-7-8 14:39

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=4652,y=5268;
  7.     cout<<endl<<"當x的值為:"<<x<<"當y的值為"<<y;
  8.     cout<<endl<<"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. }
複製代碼

作者: 林羿丞    時間: 2019-7-8 14:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  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. }
複製代碼

作者: 吳秉霖    時間: 2019-7-8 14:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=17,y=4;
  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. }
複製代碼

作者: 曾博宇    時間: 2019-7-8 14:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int x=23,y=7;
  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. }
複製代碼

作者: 陳昱安    時間: 2019-7-8 15:00

  1. cout<<"x+y="<<x+y<<endl;
複製代碼

作者: 楊子毅    時間: 2019-7-8 15:05

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=12, y=5;
  7.    
  8.     cout<<"當x為"<<x<<",y為"<<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.     cout<<"x%y="<<x%y<<endl;

  14.      system("pause");
  15.      return 0;   
  16. }     
複製代碼

作者: 王柏諺    時間: 2019-7-8 15:06

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  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. }
複製代碼

作者: 王柏諺    時間: 2019-7-8 15:19

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;   
  7.     cout<<"請輸入一整數:";
  8.     cin>>a;
  9.     cout<<"您輸入的數字是"<<a<<endl;
  10.    
  11.     system("pause");
  12.     return 0;
  13.    
  14. }   
  15.    
複製代碼

作者: 王銘鴻    時間: 2019-7-9 11:22

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





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