標題:
[作業] 字串處理 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-1-16 19:44
標題:
[作業] 字串處理 (一)
我們在宣告字元陣列的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元。
例如:
char str[3]="tw";
char str[9]="字串處理"
分別利用宣告字串與宣告字元陣列的方式, 在銀幕上顯示 "恭喜發財紅包拿來!" 字樣.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="恭喜發財紅包拿來!";
char str2[]="恭喜發財紅包拿來!";
cout<<str1<<endl;
cout<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏霖
時間:
2019-1-17 20:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string tim="恭喜發財紅包拿來";
char tim2 [17]="恭喜發財紅包拿來";
cout<<tim<<endl;
cout<<tim2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-2-2 15:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char c='A';
string a="恭喜發財";
char b[]="恭喜發財";
cout<<c<<endl;
cout<<a<<endl;
cout<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-2-2 15:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string a="小屁孩別鬧";
char b[]="小屁孩別鬧";
cout<<a<<endl;
cout<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚詩澐
時間:
2019-2-2 15:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1="你怪怪的";
char str2[9]="你怪怪的";
cout<<str1<<endl;
cout<<str2<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2