標題:
陣列 (三) - 字元陣列與字串
[打印本頁]
作者:
鄭繼威
時間:
2022-12-17 10:12
標題:
陣列 (三) - 字元陣列與字串
本帖最後由 鄭繼威 於 2022-12-17 14:51 編輯
在C++中,
字串可運用字元陣列或字串變數來處理
。在利用字元陣列宣告字串的時候要注意它的
長度
,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個
'\0'
的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,這一點要特別注意。
若為中文字,則每個字要佔兩個字元
。
char myName[3] = "tw";
char myName[7] = "王小明";
補充:‘\0’ 是 c/c++ 語言中的字符串結束符,在ASCII字符集中對應空字符NULL
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧禹丞
時間:
2022-12-17 14:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2022-12-17 14:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2022-12-17 14:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2022-12-17 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
羅紹齊
時間:
2022-12-17 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-12-17 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="bruh";
cout<<str<<endl;
char strc[5]="bruh";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2022-12-17 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-12-17 15:09
7
作者:
羅暐傑
時間:
2022-12-17 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-12-17 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-12-17 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char Class[]={"Hello friend"};
for(int i=0;i<=12;i++)
{
cout<<Class[i]<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2022-12-19 21:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2022-12-24 01:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-3-29 18:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char stra[]="大家好!我叫王小明!";
cout<<stra<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
朱奕祈
時間:
2024-1-22 20:27
#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://seed.istak.org.tw/)
Powered by Discuz! 7.2