標題:
陣列 (三) - 字元陣列與字串 1
[打印本頁]
作者:
tonyh
時間:
2019-11-29 20:10
標題:
陣列 (三) - 字元陣列與字串 1
在C++中,字串可運用字元陣列或字串變數來處理。在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元,這一點要特別注意。
char myName[3] = "tw";
char myName[7] = "王小明";
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-11-29 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-11-29 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫孫大鵰!";
cout<<str<<endl;
char strc[19]="大家好!我叫孫大鵰!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-11-29 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好,我叫李宇澤.";
cout<<str<<endl;
char strc[19]="大家好,我叫李宇澤.";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-11-29 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-11-29 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我是恐龍!";
cout<<str<<endl;
char strc[19]="大家好!我是恐龍";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-11-29 20:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我不叫王小明!";
cout<<str<<endl;
char strc[21]="大家好!我不叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-11-29 20:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[17]="我是人!!!!!!!!!!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-11-29 20:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string s="大家好,我叫王曉明";
cout<<s<<endl;
char sd[]="大家好,我叫王曉明";
cout<<sd<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2019-11-29 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫蔡忻霓!";
cout<<str<<endl;
char strc[19]="大家好!我叫蔡忻霓!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-11-29 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫李宇澤.";
cout<<str<<endl;
char strc[19]="大家好!我叫李宇澤.";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2