標題:
陣列 - 字元陣列與字串 2
[打印本頁]
作者:
王瑞喻
時間:
2020-7-12 17:37
標題:
陣列 - 字元陣列與字串 2
試利用字元陣列宣告字串,並用for迴圈將字元一個個帶出來,如下圖所示。
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[]="Hello!My name is Tony!";
for(int i=0; i<=21; i++)
cout<<strc[i];
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-7-23 19:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char X[]="Hello!My name is Tony!";
for(int i=0;i<=21;i++)
cout<<X[i];
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2