標題:
陣列 (四) - 字元陣列與字串 2
[打印本頁]
作者:
tonyh
時間:
2019-11-29 20:10
標題:
陣列 (四) - 字元陣列與字串 2
試利用字元陣列宣告字串,並用for迴圈將字元一個個帶出來,如下圖所示。
本帖隱藏的內容需要回復才可以瀏覽
作者:
李宇澤
時間:
2019-11-29 20:21
本帖最後由 李宇澤 於 2019-11-29 20:25 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[]="大家好,我叫李宇澤.";
for(int i=0; i<=18; i++)
cout<<strc[i];
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-11-29 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[23]="Hello!My name is tony!";
for(int i=0; i<23; i++)
cout<<str[i];
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-11-29 20:25
本帖最後由 陳宥穎 於 2019-11-29 20:27 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[]="hellow my name is not tony!";
for(int i=0; i<23; i++)
{
cout<<strc[i];
}
cout<<strc<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-11-29 20:25
本帖最後由 林政瑜 於 2019-11-29 20:27 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[]="大家好!我叫王小明!";
for(int i=0; i<20; i++)
cout<<strc[i];
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2019-11-29 20:26
本帖最後由 蔡忻霓 於 2019-11-29 20:27 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[]="Hello!My name is Niki!";
for(int i=0; i<=21; i++)
cout<<strc[i];
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-11-29 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char sd[21]="Hello!My name is to!";
for(int m=0; m<=21; m++)
cout<<sd[m];
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-11-29 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[]="Hello!My name is Tony!!";
for(int i=0; i<23; i++)
cout<<strc[i];
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-11-29 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[23]="Hello everyone! I am a dinosaur";
for(int i=0; i<23; i++)
cout<<str[i];
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-11-29 20:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char f[]="Hello!My name is tony!";
for(int j=0; j<24; j++)
cout<<f[j];
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2