標題:
陣列 (一)
[打印本頁]
作者:
鄭繼威
時間:
2022-10-12 03:44
標題:
陣列 (一)
本帖最後由 鄭繼威 於 2022-11-7 20:12 編輯
「陣列(Array)」
,按序排列的同類資料元素的
集合
。
1.
索引值是從0
開始計數
2.索引值
不可超出陣列的範圍
3.取陣列最後一個值=陣列長度-1
[attach]13733[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
string birds[]={"小白","小黃","小綠","小紅","小紫","小橙","小靖","小橘"};
// cout<<birds[0]<<endl;
// cout<<birds[1]<<endl;
// cout<<birds[5]<<endl;
for(int i=0;i<=7;i++)
{
cout<<"第"<<i+1<<"隻"<<birds[i]<<endl;
}
system("pause");
return 0;
}
複製代碼
假設五年級共有8個班: 1班有30人, 2班有31人, 3班有33人, 4班有32人, 5班有31人, 6班有35人, 7班有28人, 8班有29人. 試利用陣列與for迴圈, 列出五年級各班的人數.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++)
cout<<"5年"<<i+1<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-10-12 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++)
cout<<"5年"<<i+1<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃柏青
時間:
2022-10-12 20:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++)
cout<<"5年"<<i+1<<"班有"<<x[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-10-12 20:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x[8]={3022222222,31234348786,3300,3,312454,35555,284574,29565656};
for(int i=0; i<8; i++)
cout<<"五年"<<i+1<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-10-12 20:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++)
cout<<"5年"<<i+1<<"班"<<a[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-10-12 20:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++)
{
cout<<"五年"<<+1<<"班有"<<a[i]<<"個人"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2