Board logo

標題: 陣列 (四) - 字元陣列與字串 2 [打印本頁]

作者: tonyh    時間: 2019-11-29 20:10     標題: 陣列 (四) - 字元陣列與字串 2

試利用字元陣列宣告字串,並用for迴圈將字元一個個帶出來,如下圖所示。


本帖隱藏的內容需要回復才可以瀏覽

作者: 李宇澤    時間: 2019-11-29 20:21

本帖最後由 李宇澤 於 2019-11-29 20:25 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     char strc[]="大家好,我叫李宇澤.";
  7.     for(int i=0; i<=18; i++)
  8.          cout<<strc[i];
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

作者: 黃辰昊    時間: 2019-11-29 20:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     char str[23]="Hello!My name is tony!";
  7.     for(int i=0; i<23; i++)
  8.         cout<<str[i];
  9.     cout<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 陳宥穎    時間: 2019-11-29 20:25

本帖最後由 陳宥穎 於 2019-11-29 20:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     char strc[]="hellow my name is not tony!";
  7.     for(int i=0; i<23; i++)
  8.     {
  9.      cout<<strc[i];        
  10.             
  11.     }
  12.     cout<<strc<<endl;  
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 林政瑜    時間: 2019-11-29 20:25

本帖最後由 林政瑜 於 2019-11-29 20:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     char strc[]="大家好!我叫王小明!";
  7.     for(int i=0; i<20; i++)
  8.     cout<<strc[i];  
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

作者: 蔡忻霓    時間: 2019-11-29 20:26

本帖最後由 蔡忻霓 於 2019-11-29 20:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     char strc[]="Hello!My name is Niki!";
  7.     for(int i=0; i<=21; i++)
  8.          cout<<strc[i];
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

作者: 黃宥華    時間: 2019-11-29 20:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     char sd[21]="Hello!My name is to!";
  7.     for(int m=0; m<=21; m++)
  8.         cout<<sd[m];
  9.     system("pause");
  10.     return 0;   
  11. }
複製代碼

作者: 董宸佑    時間: 2019-11-29 20:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char strc[]="Hello!My name is Tony!!";
  7.     for(int i=0; i<23; i++)
  8.         cout<<strc[i];
  9.     cout<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 余有晉    時間: 2019-11-29 20:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     char str[23]="Hello everyone! I am a dinosaur";
  7.     for(int i=0; i<23; i++)
  8.         cout<<str[i];
  9.     cout<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 孫嘉駿    時間: 2019-11-29 20:29

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     char f[]="Hello!My name is tony!";
  8.     for(int j=0; j<24; j++)
  9.         cout<<f[j];
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2