標題:
陣列 (三) - 字元陣列與字串 1
[打印本頁]
作者:
周政輝
時間:
2017-7-4 18:02
標題:
陣列 (三) - 字元陣列與字串 1
在C++中,字串可運用字元陣列或字串變數來處理。在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元,這一點要特別注意。
char myName[3] = "tw";
char myName[7] = "王小明";
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大家好!我叫王小明!";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏羽彤
時間:
2017-7-4 18:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="Hello!";
cout<<str<<endl;
char stri[18]="Hello!";
cout<<stri<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫沛庭
時間:
2017-7-4 18:08
本帖最後由 巫沛庭 於 2017-7-4 18:09 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string num="大家好!";
cout<<num<<endl;
char gggg[10]="大家好!";
cout<<gggg<<endl;
system("pause");
return 0;
}
作者:
張凱婷
時間:
2017-7-4 18:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="大#家好我叫王小明";
cout<<str<<endl;
char strc[19]="大#家好我叫王小明";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張閎鈞
時間:
2017-7-4 18:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="錯誤 敬請見諒";
cout<<str<<endl;
char strc[19]="大家好!我叫王小明!";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-7-4 18:10
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
string str="蕭蕭蕭蕭蕭蕭蕭蕭蕭蕭蕭蕭蕭 煌奇";
cout<<str<<endl;
char strc[19]="蕭煌奇";
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫晉宇
時間:
2017-7-4 18:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="YA";
cout<<str<<endl;
char strc[19]="YA";
cout<<strc<<endl;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2