返回列表 發帖

陣列(五)

輸入一段話 並將該字串存入字元陣列當中
運用for迴圈讀出來
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     // 陣列
  7.     string str ="Hello";
  8.    
  9.     char chr[] = "Hello World";
  10.    
  11.     for(int i=0;i<11;i++)
  12.     {
  13.       cout << chr[i] << endl;
  14.     }
  15.    
  16.     system("pause");
  17.     return 0;     
  18. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表