返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int total = 0;
  7.     int max ;
  8.     cout << "輸入最大值:"  ;
  9.     cin >> max ;
  10.    
  11.       for(int a = 1; a <= max; a++)
  12.       {
  13.          total = total + a;
  14.       }
  15.       cout << "1~" << max << "100總和等於:" << total << endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

返回列表