C++基礎教程-數組

來源:互聯網
上載者:User

  數組是指資料在記憶體中按順序存放,通過數組名和序號,就可以很方便地尋找和使用資料,本教程為大家介紹C++語言中的數組;

  1、啟動 Geany

  1)點菜單“應用程式-編程-Geany”啟動 Geany ,建立一個 c++ 來源程式;

  2)點菜單“檔案-另存新檔”命令,以“array”為檔案名稱,儲存檔案到自己的檔案夾;

  2、輸入程式碼

  1)我們來定義一個存放學產生績的數組,在主函數中輸入;

      int score[5] = {70,60,90,85,100};

      for (int i=0; i<5; i++)

      {

          cout << score[i] << " ";

      } 

  2)第一句是定義一個數組,用方括弧表示數組大小,定義的時候可以賦值初始化,

  用 for 語句來顯示數組的內容,數組名 score ,局部變數 i 來表示各個數組元素,從 0 到 4;

  3)我們再看一個字串的,字串最後有一個結束標記 ,所以只能存放 4 個字元;

      cout << endl;

      char ch[5] = "abcd"; //省略花括弧

      for (int i=0; i<5; i++)

      {

          cout << ch[i] << " ";

      } 

  4)字串在記憶體裡是單個順序存放的,也像數組一樣,只是最後有一個 標誌作為字串結束標記;

  a | b | c | d |  

  5)因此,顯示字串數組,可以直接用 cout << ch; 語句,程式顯示的時候,從 ch 開始,到 的自動結束;

  #include <iostream>

  using namespace std;

  int main(int argc, char** argv)

  {

      int score[5] = {70,60,90,85,100};

     

      for (int i=0; i<5; i++)

      {

          cout << score[i] << " ";

      }

      cout << endl;

      char ch[5] = "abcd"; //省略花括弧

      for (int i=0; i<5; i++)

      {

          cout << ch[i] << " ";

      }

      cout << endl;

      cout << ch;  //直接輸出

      return 0;

  }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.