標題:
字串處理 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-9-15 19:06
標題:
字串處理 (一)
我們在宣告字元陣列的時候要
注意它的長度
,以免位數不夠造成程式錯誤。事實上,
每個字串後面都有一個 '\0' 的字元
,例如 "tw" 字串,事實上總共用了 3 Bytes,
若為中文字,則每個字要佔兩個字元
。
例如:
char str[3]="tw";
char str[9]="字串處理"
補充:
‘\0’ 是 c/c++ 語言中的字符串結束符
,在ASCII字符集中對應空字符
NULL
試分別利用宣告
字串
與宣告
字元陣列
的方式, 在銀幕上顯示 "Good morning!" 字樣.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱品惟
時間:
2023-9-15 19:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
得銓
時間:
2023-9-15 20:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2023-9-15 20:33
本帖最後由 蔡沛倢 於 2023-9-15 20:44 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char a[5]="abcd";
cout<<"原本:"<<a<<endl;
cout<<"拆解:"endl;
for(int i=0;i<=3;i++)
{
cout<<a[i]<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2023-9-15 20:38
#include<cstdlib>
#include<iostream>
using namespace std;
int main(){
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-9-15 20:40
4
作者:
陳宣廷
時間:
2023-9-15 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2023-9-15 20:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="This boy is good cookie!";
char str2[25]="This boy is good cookie!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-9-15 20:47
6
作者:
黃品禎
時間:
2023-9-16 16:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李柏漢
時間:
2023-9-18 18:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-9-20 05:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string talk="Beans!";
char talk2[7]="Beans!";
cout<<talk<<endl;
cout<<talk2<<endl;
cout<<talk[0]<<endl;
cout<<talk2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2023-9-21 17:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-10-3 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祈
時間:
2024-4-29 19:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="what hall";
char str2[]="what hall";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[2]<<endl;
cout<<str2[3]<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2