標題:
陣列 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-1-16 19:24
標題:
陣列 (一)
假設五年級共有8個班: 1班有30人, 2班有31人, 3班有33人, 4班有32人, 5班有31人, 6班有35人, 7班有28人, 8班有29人. 試利用陣列與for迴圈, 列出五年級各班的人數.
[attach]5753[/attach]
#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;
}
複製代碼
作者:
洪寬瀧
時間:
2019-1-19 14:44
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{ int a=5;
int b[]={30,31,33,32,31,35,28,29};
for(int i=0;i<8;i++)
{
cout<<"5年"<<i+1<<"班有"<<b[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-1-19 14:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int b[]={30,31,33,32,31,35,28,29};
for(int i=0;i<=7;i++)
{
cout<<"五年"<<i+1<<"班有"<<b[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-1-19 14:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int b[]={30,31,33,32,31,35,28,29};
for(int i=0;i<=7;i++)
{
cout<<"五年"<<i+1<<"班有"<<b[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-1-19 14:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[]={30,31,33,32,31,35,28,29};
for(int i=1; i<=8; i++)
{
cout<<"5年"<<i<<"班有"<<a[i-1]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2019-1-19 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int f[]={30,31,33,32,31,35,28,29};
for(int i=0;i<=7;i++)
{
cout<<"五年"<<i+1<<"班有"<<f[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
曲書辰
時間:
2019-1-19 14:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int b[]={30,31,33,32,31,35,28,29};
for(int i=0;i<8;i++)
{
cout<<"5年"<<(i+1)<<"班有"<<b[i]<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2