標題:
[作業] 陣列 (三) - 宣告字串 1
[打印本頁]
作者:
tonyh
時間:
2015-1-24 11:51
標題:
[作業] 陣列 (三) - 宣告字串 1
本帖最後由 tonyh 於 2015-1-31 10:52 編輯
我們在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元,這一點要特別注意。
char myName[3] = "tw";
char myName[7] = "王小明";
[attach]1132[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char name[7]="王小明";
cout<<"大家好!我叫"<<name<<"!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2015-1-24 12:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char name[7]="李知易";
cout<<"大家好!我叫"<<name<<"!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-1-24 17:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char a[7]="XXX";
cout<<"大家好!我叫"<<a<<"!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2015-1-25 15:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char name[7]={"莊孝維"};
cout<<"敏納桑空機挖,挖大喜挖"<<name<<"\a"<<"\n";
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-1-28 14:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char name[7]="王小明";
cout<<"大家好!我叫"<<name<<"!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2015-1-31 10:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char name[7]="李大全";
cout<<"大家好!我叫"<<name<<"!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2