標題:
陣列 (三) - 宣告字串 2
[打印本頁]
作者:
tonyh
時間:
2015-1-31 10:52
標題:
陣列 (三) - 宣告字串 2
本帖最後由 tonyh 於 2015-1-31 10:56 編輯
同學們需清楚 字元陣列, 字串陣列, 與字串變數 的差別.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char n1[5]="Tony"; //字元陣列
char n2[4]={'T','o','n','y'}; //字元陣列
string n3[2]={"To","ny"}; //字串陣列
string n4="Tony"; //字串型態的變數
int a=3; //整數型態的變數
char c='P'; //字元型態的變數
cout<<n1<<endl; //輸出n1
for(int i=0; i<4; i++) //輸出n2
cout<<n2[i];
cout<<endl;
for(int i=0; i<2; i++) //輸出n3
cout<<n3[i];
cout<<endl;
cout<<n4<<endl; //輸出n4
cout<<a<<endl; //輸出a
cout<<c<<endl; //輸出c
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-1-31 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char n1[5]="Tony"; //字元陣列
char n2[4]={'T','o','n','y'}; //字元陣列
string n3[2]={"To","ny"}; //字串陣列
string n4="Tony"; //字串型態的變數
int a=3; //整數型態的變數
char c='P'; //字元型態的變數
cout<<n1<<endl; //輸出n1
for(int i=0; i<4; i++) //輸出n2
cout<<n2[i];
cout<<endl;
for(int i=0; i<2; i++) //輸出n3
cout<<n3[i];
cout<<endl;
cout<<n4<<endl; //輸出n4
cout<<a<<endl; //輸出a
cout<<c<<endl; //輸出c
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2015-1-31 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char n1[5]="Fuck";
char n2[4]={'F','U','C','K'};
string n3[2]={"Fu","ck"};
string n4="fuck";
int a=3;
char c='8';
cout<<n1<<endl;
for(int i=0; i<4; i++)
cout<<n2[i];
cout<<endl;
for(int i=0; i<2; i++)
cout<<n3[i];
cout<<endl;
cout<<n4<<endl;
cout<<a<<endl;
cout<<c<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2015-1-31 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char n1[5]="Tony";
char n2[4]={'T','o','n','y'};
string n3[2]={"To","ny"};
string n4="Tony";
int a=3;
char c='P';
cout<<n1<<endl;
for(int i=0; i<4; i++)
cout<<n2[i];
cout<<endl;
for(int i=0; i<2; i++)
cout<<n3[i];
cout<<endl;
cout<<n4<<endl;
cout<<a<<endl;
cout<<c<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-1-31 10:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char n1[5]="vito";
char n2[4]={'v','i','t','o'};
string n3[2]={"vi","to"};
string n4="vito";
int a=3;
char c='P';
cout<<n1<<endl;
for(int i=0; i<4; i++)
cout<<n2[i];
cout<<endl;
for(int i=0; i<2; i++)
cout<<n3[i];
cout<<endl;
cout<<n4<<endl;
cout<<a<<endl;
cout<<c<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2015-1-31 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char n1[5]="vito";
char n2[4]={'v','i','t','o'};
string n3[2]={"vi","to"};
string n4="vito";
int a=3;
char c='P';
cout<<n1<<endl;
for(int i=0; i<4; i++)
cout<<n2[i];
cout<<endl;
for(int i=0; i<2; i++)
cout<<n3[i];
cout<<endl;
cout<<n4<<endl;
cout<<a<<endl;
cout<<c<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2