標題:
陣列 (一)
[打印本頁]
作者:
鄭繼威
時間:
2022-12-17 10:11
標題:
陣列 (一)
「陣列(Array)」
,按序排列的同類資料元素的
集合
。
1.
索引值是從0
開始計數
2.索引值
不可超出陣列的範圍
3.取陣列最後一個值=陣列長度-1
#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-12-17 10:30
#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-12-17 13:09
#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-12-17 13:21
#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-12-17 13:38
#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-12-17 14:10
#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-12-17 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int people[]={30,31,33,32,31,35,28,29};
for(int i=0;i<=7;i++){
cout<<"5年"<<i+1<<"班有"<<people[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-12-17 14:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={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-12-17 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a[ ]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++){
cout<<"五年"<<i+1<<"班"<<a[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-12-17 14:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int Class[]={1000,1025,1456,7845,9999,18000,80};
for(int i=0;i<=6;i++)
{
cout<<i+1<<"號集中營有"<<Class[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
羅暐傑
時間:
2022-12-17 14:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int c[]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++){
cout<<"五年"<<i+1<<"班有"<<c[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-12-17 14:48
10
作者:
徐啟祐
時間:
2022-12-19 17:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int students[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++){
cout<<"5年"<<i+1<<"班有"<<students[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2022-12-24 00:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int n[]={30,31,33,32,31,35,28,29};
for(int i=0;i<=7;i++){
cout<<"五年"<<i+1<<"班有"<<n[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-3-8 18:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int p[8]={30,31,33,32,31,35,28,29};
for (int i=0;i<8;i++)
cout<<"五年"<<i+1<<"班有"<<p[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祈
時間:
2024-1-15 20:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int XD[8]={30,31,33,32,31,35,28,29};
for(int i=0; i<8; i++)
cout<<"5年"<<i+1<<"班有"<<XD[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2