Board logo

標題: 002_四則運算 [打印本頁]

作者: 游東祥    時間: 2015-3-21 11:03     標題: 002_四則運算

用 + - * / 運算 10 與 5
顯示範例:
  1. 15
  2. 5
  3. 50
  4. 2
複製代碼

作者: 王翔    時間: 2015-3-21 11:15

  1. #include <iostream>
  2. #include <cstdlib>;

  3. using namespace std;

  4. int main()
  5. {
  6.         cout<< 10 + 5<< endl;
  7.         cout<< 10 - 5<< endl;
  8.         cout<< 10 * 5<<endl;
  9.         cout<< 10 / 5<<endl;
  10.        
  11.        
  12.        
  13.        
  14.        
  15.        
  16.        
  17.        
  18.         system ("pause") ;
  19.         return 0;
  20. }
複製代碼

作者: 黃璽安    時間: 2015-3-21 11:16

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         cout << 10 + 5 << endl;
  7.         cout << 10 - 5 << endl;
  8.         cout << 10 * 5 << endl;
  9.         cout << 10 / 5 << endl;  // 你的程式碼
  10.        
  11.         system("pause");
  12.         return 0;
  13. }
複製代碼

作者: 吳承勳    時間: 2015-3-21 11:17

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main()
  5. {
  6.         cout<< 10 + 5 << endl;
  7.         cout<< 10 - 5 << endl;
  8.         cout<< 10 * 5 << endl;
  9.         cout<< 10 / 5 << endl;
  10.         system("pause");
  11.         return 0 ;
  12. }
複製代碼

作者: 林廷翰    時間: 2015-3-21 11:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         cout<< 10 + 5 <<endl;
  7.         cout<< 10 - 5 <<endl;
  8.         cout<< 10 * 5 <<endl;
  9.         cout<< 10 / 5 <<endl;
  10.         system("paause");
  11.         return 0;
  12. }
複製代碼

作者: 林廷翰    時間: 2015-3-30 21:08






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