返回列表 發帖

045 輸入多數值並存入陣列

宣告一個大小為10的陣列,讓使用者逐一輸入0~10個數字。使用者輸入的數字將依序存在陣列內。
如果使用者輸入"0",代表輸入結束。

範例1:
請輸入第1個數字:15
請輸入第2個數字:40
請輸入第3個數字:11
請輸入第4個數字:0
-----------------------
輸入的數字數量:3個
陣列內容如下:
1 - 15
2 - 40
3 - 11



範例2:
請輸入第1個數字:66
請輸入第2個數字:13
請輸入第3個數字:80
請輸入第4個數字:99
請輸入第5個數字:45
請輸入第6個數字:64
請輸入第7個數字:0
-----------------------
輸入的數字數量:6個
陣列內容如下:
1 - 66
2 - 13
3 - 80
4 - 99
5 - 45
6 - 64

本帖最後由 林宇翔 於 2014-4-26 14:52 編輯

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
                int z[10];
                int index = 0;
                int max = 10;
                bool isEnd = false;
                while(index < 10 && isEnd == false)
                {
                        cout << "請輸入第" << index + 1 << "個數字:" ;
                        cin >> z[index];
                                if(z[index] == 0)
                                {
                                        isEnd = true;
                                }
                        index++;
                }
                cout << "-----------------------" << endl;
                cout << "輸入的數字數量:" << index << "個" << endl;
                cout << "陣列內容如下:" << endl;
                for(int x = 0; x < index - 1; x++)
                {
                        cout << x << " - " << z[x] << endl;
                }
               
        system ("pause");
        return 0;
}

TOP

  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

返回列表