標題:
[作業] 陣列
[打印本頁]
作者:
tonyh
時間:
2011-11-19 17:30
標題:
[作業] 陣列
本帖最後由 tonyh 於 2011-11-26 16:08 編輯
假設五年級共有六個班,
一班有48人, 二班有49人, 三班有52人, 四班有50人, 五班有47人, 六班有51人,
試利用陣列與for迴圈, 列出五年級各班的人數, 以及五年級共有多少人.
#include<iostream>
using namespace std;
int main()
{
int a[]={48,49,52,50,47,51};
int sum=0;
for(int i=0; i<=5; i++)
{
cout<<"5年"<<i+1<<"班"<<a[i]<<"人"<<endl;
sum=sum+a[i];
}
cout<<"5年級總共"<<sum<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-11-19 17:38
#include <iostream>
using namespace std;
int main()
{
int a[4]={28,33,34,30};
int sum=0;
for(int i=0; i<=3; i++)
{
sum=sum+a[i];
}
cout<<"5年級共有"<<sum<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2011-11-25 22:46
#include <iostream>
using namespace std;
int main()
{
int a[6]={48,49,52,50,47,51};
int b=0;
for(int i=0; i<=5; i++)
{
cout<<"5年"<<i+1<<"班有"<<a[i]<<"人"<<endl;
}
for(int i=0; i<=5; i++)
{
b=b+a[i];
}
cout<<"5年級共有"<<b<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-11-26 13:08
#include <iostream>
using namespace std;
int main()
{
int a[6]={48,49,52,50,47,51};
int b=0;
for(int i=0; i<=5; i++)
{
cout<<"5年"<<i+1<<"班有"<<a[i]<<"人"<<endl;
}
for(int i=0; i<=5; i++)
{
b=b+a[i];
}
cout<<"5年級共有"<<b<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-11-26 15:03
#include <iostream>
using namespace std;
int main()
{
int a[6]={48,49,52,50,47,51};
int b=0;
for(int i=0; i<=5; i++)
{
cout<<"5年"<<i+1<<"班有"<<a[i]<<"人"<<endl;
}
for(int i=0; i<=5; i++)
{
b=b+a[i];
}
cout<<"5年級共有"<<b<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-11-26 15:15
本帖最後由 劉漢文 於 2011-11-26 16:08 編輯
#include <iostream>
using namespace std;
int main()
{
int a[6]={48,49,52,50,47,51};
int b=0;
for(int i=0; i<=5; i++)
{
cout<<"5年"<<i+1<<"班有"<<a[i]<<"人"<<endl;
}
for(int i=0; i<=5; i++)
{
b=b+a[i];
}
cout<<"5年級共有"<<b<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2