標題:
字串處理 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-5-6 12:09
標題:
字串處理 (一)
我們在宣告字元陣列的時候要
注意它的長度
,以免位數不夠造成程式錯誤。事實上,
每個字串後面都有一個 '\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-5-6 14:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good night!";
char str2[12]="Good night!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[3]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-5-6 14:50
#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-5-6 14:50
#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-5-6 14: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[3]<<endl;
cout<<str2[10]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-5-6 14: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-5-6 14:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good moring.";
char str2[]="Good moring徭";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[15]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-5-6 14:55
6
作者:
宜儒
時間:
2023-5-13 00:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="Good morning!";
char str2[14]="Good morning!"; //字元陣列char name[]
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-5-13 09:33
#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-6-1 07:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string word1 = "Good morning!";
char word2[14] = "Good morning!";
for (int i = 0;i <= 13;i++)
{
cout << word1[i];
}
cout << endl;
for (int i = 0;i <= 13;i++)
{
cout << word2[i];
}
cout << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2