標題:
字串處理 (一)
[打印本頁]
作者:
tonyh
時間:
2020-5-15 19:15
標題:
字串處理 (一)
我們在宣告字元陣列的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,
若為中文字,則每個字要佔兩個字元
。
例如:
char str[3]="tw";
char str[9]="字串處理"
試分別利用宣告
字串
與宣告
字元陣列
的方式, 在銀幕上顯示 "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;
}
複製代碼
作者:
林政瑜
時間:
2020-5-15 19:35
#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[7]<<endl;
cout<<str2[6]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-15 19:35
#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;
}
複製代碼
作者:
李宇澤
時間:
2020-5-15 19:35
#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;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-15 19:35
#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;
}
複製代碼
作者:
董宸佑
時間:
2020-5-15 19:36
#include<cstdlib>
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
string str1="Good morning!";;
char str2[]="Good morning!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[3]<<endl;
cout<<str2[7]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2020-5-15 19:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string s1="good morning";
char s2[]="good morning";
cout<<s1<<endl;
cout<<s2<<endl;
cout<<s1[0]<<endl;
cout<<s2[0];
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-5-15 19:38
#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;
}
複製代碼
作者:
黃宥華
時間:
2020-5-15 19:40
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string p="123";
char j[]="123";
cout<<p<<endl;
cout<<j<<endl;
cout<<p[0]<<endl;
cout<<j[0]<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2