返回列表 發帖

陣列宣告(一)

試著宣告一個數值陣列 並輸出在螢幕上
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     // 陣列
  7.     int num[10]; //宣告為10的空間 0~9
  8.     num[0] = 1;
  9.     num[1] = 2;
  10.     num[2] = 3;
  11.     num[3] = 4;
  12.     num[4] = 5;
  13.     num[5] = 6;
  14.     num[6] = 7;
  15.     num[7] = 8;
  16.     num[8] = 9;
  17.     num[9] = 0;
  18.    
  19.     cout << num[0] << endl;
  20.     system("pause");
  21.     return 0;     
  22. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表