返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int max = 10;
  7.         int index = 0;
  8.         int z[10] = {};
  9.         bool isEnd = false;
  10.        
  11.         while(index < max && isEnd == false)
  12.         {
  13.                 cout << "請輸入第" << index + 1 << "個數字:";
  14.                 cin >> z[index];
  15.                
  16.                 if (z[index] == 0)
  17.                 {
  18.                         isEnd = true;
  19.                 }
  20.                 index++;
  21.         }
  22.         cout << "-----------------------" << endl;
  23.         cout << "輸入的數字數量:" << index << "個" << endl;
  24.         cout << "陣列內容如下:" << endl;
  25.         for(int i = 0; i < index - 1; i++)
  26.         {
  27.                 cout << i << "-" << z[i]<< endl;
  28.         }
  29.        
  30.        
  31.        
  32.        
  33.        
  34.         system("pause");
  35.         return 0;
  36. }
複製代碼

TOP

返回列表