Board logo

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

作者: tonyh    時間: 2016-2-2 13:38     標題: 五則運算

本帖最後由 tonyh 於 2016-2-2 14:34 編輯

+  加
-   減     
*  乘
/   除
% 取餘數
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //int x=23;
  7.     //int y=7;
  8.     int x=23, y=7;  //宣告兩個整數變數,並指定它們的值
  9.    
  10.     cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  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-2-2 14:10

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

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

作者: 林昱岑    時間: 2016-2-2 14:19

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

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

作者: 吳建錡    時間: 2016-2-2 14:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int h=9 ,f=5;
  7.      cout<<"當h的職位"<<h<<",f的職位"<<f<<"時..."<<endl;
  8.      cout<<"h+f="<<h+f<<endl;
  9.      cout<<"h-f="<<h-f<<endl;
  10.      cout<<"h*f="<<h*f<<endl;
  11.      cout<<"h/f="<<h/f<<endl;
  12.      cout<<"h%f="<<h%f<<endl;
  13.      
  14.      system("pause");
  15.      return 0;


  16. }
複製代碼

作者: 陳泓廷    時間: 2016-2-2 14:33

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

作者: 陳泓瑜    時間: 2016-2-2 15:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.     int x;
  7.     cout<<"PLEASE SET A NUMBER:";
  8.     cin>>x;
  9.     cout<<"THE NUMBER IS:"<<x<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





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