標題:
字串處理 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-3-26 23:57
標題:
字串處理 (一)
我們在宣告字元陣列的時候要注意它的長度,以免位數不夠造成程式錯誤。
事實上,每個字串後面都有一個 '\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-3-28 10:55
#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-3-28 10:59
#include<iostream>
#include<cstdlib>
#include<cmath>
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-3-28 11:00
#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-3-28 11:00
#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-3-28 11:00
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-3-28 11:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string s="Good morning!";
char s1[14]="Good morning!";
cout<<s<<endl;
cout<<s1<<endl;
cout<<s[0]<<endl;
cout<<s1[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2020-3-28 11:02
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
string strl="Good moring!";
char str2[14]="Good moring!";
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str1[0]<<endl;
cout<<str2[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2020-3-28 11: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;
}
複製代碼
作者:
王建葦
時間:
2020-4-2 11:40
#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]<<str1[1]<<str1[2]<<str1[3]<<endl;
cout<<str2[5]<<str2[6]<<str2[7]<<str2[8]<<str2[9]<<str2[10]<<str2[11]<<str2[12]<<str2[13]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-11-18 17: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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2