返回列表 發帖

[作業] 陣列 (三) - 宣告字串 1

本帖最後由 王瑞喻 於 2020-7-12 17:07 編輯

在C++中,字串可運用字元陣列或字串變數來處理。在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元,這一點要特別注意。
char myName[3] = "tw";
char myName[7] = "王小明";

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     string str="大家好!我叫王小明!";
  7.     cout<<str<<endl;
  8.     char strc[19]="大家好!我叫王小明!";
  9.     cout<<strc<<endl;  
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }      
複製代碼

TOP

  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. }
複製代碼

TOP

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

TOP

返回列表