Board logo

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

作者: tonyh    時間: 2016-7-9 10:08     標題: 五則運算

本帖最後由 tonyh 於 2016-7-9 10:31 編輯

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

[attach]1659[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=7, 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-7-9 10:35

  1. #include<iosteam>
  2. #include<cstdlib>
  3. using namespace stb;
  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.     return0;
  15. }
複製代碼

作者: 李易宸    時間: 2016-7-9 10:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=7, 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-7-9 10:39

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=7, 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-7-9 10:42

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=7, y=3;
    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;   
}
作者: 張宸珉    時間: 2016-7-9 10:43

  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. }
複製代碼

作者: 黃安立    時間: 2016-7-9 10:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=7, 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-7-9 10:45

#include<cstdlib>
using namespace std;
int main()
{
    int x=7, y=3;
    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;   
}
作者: 陳亭丞    時間: 2016-7-9 10:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //五則運算
  7.     //intx;
  8.     //inty;
  9.     int x=23,y=7;
  10.    
  11.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 顏詩芸    時間: 2016-7-9 10:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     // 五則運算
  7.     //int x;
  8.     //int y;
  9.     int x=23,y=7;
  10.   
  11.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  17.   
  18.     system("pause");
  19.     return 0;  
  20. }
複製代碼

作者: 陳星霖    時間: 2016-7-9 10:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //五則運算
  7.     //int x;
  8.     //int y;
  9.     int x=23,y=7;
  10.    
  11.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  17.     system("pause");
  18.     return 0;

  19. }
複製代碼

作者: 吳承訓    時間: 2016-7-9 11:17

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

作者: 吳曜丞    時間: 2016-7-10 10:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=7, 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-7-10 11:16

  1. #inclue<iostream>
  2. #inclue<cstdilb>
  3. using namespace std;
  4. int x,y;

  5.       cout<<"請輸入x的值:";
  6.       cin>>x;
  7.       cout<<"請輸入y的值:";
  8.       cin>>y;
  9.       cout<<"x+y="<<x+y="<<x+y<<endl;
  10.       cout<<"x-y="<<x-y="<<x-y<<endl;
  11.       cout<<"x*y="<<x*y="<<x*y<<endl;
  12.       cout<<"x/y="<<x/y="<<x/y<<endl;
  13.       cout<<"x%y="<<x%y="<<x%y<<endl;
  14.       system("pause");
  15.       return 0;
  16. }
複製代碼





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