標題:
陣列 (四) - 字元陣列與字串 2
[打印本頁]
作者:
方浩葦
時間:
2024-7-6 12:06
標題:
陣列 (四) - 字元陣列與字串 2
試利用字元陣列宣告字串,並用for迴圈將字元一個個帶出來,如下圖所示。
本帖隱藏的內容需要回復才可以瀏覽
作者:
高湘庭
時間:
2024-7-6 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char strc[23]="Hello!My name is Tony!";
for(int i=0;i<23;i++)
cout<<strc[i];
cout<<endl;
system("pause");
return 0;
}
作者:
林少謙
時間:
2024-7-6 16:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char a[23]="Hello!My name is Tony!";
for(int i=0 ; i<=22 ;i++)
{
cout<<a[i];
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-7-13 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char a[23]="Hello!My name is Tony!";
for(int i=0;i<=23;i++){
cout<<a[i];
}
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-7-13 14:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char strc[23]="Hello!My name is Tony!";
for(int i=0; i<23; i++)
cout<<strc[i];
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-13 14:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char strc[23]="Hello!My name is Tony!";
for(int i=0;i<23;i++)
cout<<strc[i];
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-13 14:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[]="Hello!My name is Tony!";
for(int i=0; i<=21; i++)
cout<<str[i];
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-7-13 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
main()
{
char n[23]={"Hello!My name is Tony!"};
for(int i=0;i<=23;i++)
{
cout<<n[i];
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2