Board logo

標題: [作業] 陣列 (三) - 宣告字串 1 [打印本頁]

作者: 陳品肇    時間: 2018-8-31 22:38     標題: [作業] 陣列 (三) - 宣告字串 1

我們在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元,這一點要特別注意。
char myName[3] = "tw";
char myName[7] = "王小明";
[attach]4729[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[7]="王小明";
  7.     cout<<"大家好!我叫"<<name<<"!"<<endl;  
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 蔡依宸    時間: 2018-9-1 17:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[7]="蔡依宸";
  7.     cout<<"大家好!我叫"<<name<<"!"<<endl;  
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 陳柏霖    時間: 2018-9-2 10:38

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         char x[7]="王小明";
  7.         cout<<"我叫"<<x<<"!"<<endl;
  8.         system("pause");
  9.         return 0;
  10. }
複製代碼

作者: 譚詩澐    時間: 2018-9-8 15:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[7]="譚詩澐";
  7.     cout<<"大家好!我叫"<<name<<"!"<<endl;  
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 戴安利    時間: 2018-9-8 15:55

本帖最後由 戴安利 於 2018-9-8 16:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    char name[7]="王小明";
  7.    cout<<"大家好!我是"<<name<<"!"<<endl;
  8.    system("pause");
  9.    return 0;  
  10. }
複製代碼

作者: 戴唯陞    時間: 2018-9-8 15:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[7] = "王小明";
  7.     cout<<"大家好!我叫"<<name<<"!"<<endl;  
  8.    
  9.     system("pause");
  10.     return 0;   
  11. }
複製代碼

作者: 戴偉宸    時間: 2018-9-8 15:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[7]="戴偉宸";
  7.     cout<<"大家好!我叫"<<name<<"!"<<endl;  
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 蔡季庭    時間: 2018-9-12 17:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char name[]="Bryce";
  7.     cout<<"大家好!我叫"<<name<<"!"<<endl;  
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼





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