標題:
陣列 (一)
[打印本頁]
作者:
方浩葦
時間:
2024-7-6 12:05
標題:
陣列 (一)
假設五年級共有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;
}
複製代碼
作者:
高湘庭
時間:
2024-7-6 14:54
#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<<"五年"<<i+1<<"班"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-7-6 15:57
#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<<"班有"<<n[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-7-13 13:59
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;
}
複製代碼
作者:
李唯銘
時間:
2024-7-13 14:03
#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;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-13 14:12
#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<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-7-13 14:38
#include<iostream>
#include<cstdlib>
using namespace std;
main()
{
int n[8]={30,31,33,32,31,35,28,29};
for(int i=0;i<8;i++)
cout<<"五年"<<i+1<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-13 14:42
#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<<"五年"<<i+1<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2