標題:
陣列 (三) - 宣告字串 2
[打印本頁]
作者:
陳品肇
時間:
2018-9-7 16:09
標題:
陣列 (三) - 宣告字串 2
#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;
}
複製代碼
作者:
陳柏霖
時間:
2018-9-8 16:36
此帖僅作者可見
作者:
戴偉宸
時間:
2018-9-8 16:39
此帖僅作者可見
作者:
戴安利
時間:
2018-9-8 16:39
此帖僅作者可見
作者:
譚詩澐
時間:
2018-9-8 16:40
此帖僅作者可見
作者:
戴唯陞
時間:
2018-9-8 16:50
此帖僅作者可見
作者:
蔡依宸
時間:
2018-9-12 17:18
此帖僅作者可見
作者:
蔡季庭
時間:
2018-9-12 17:23
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2