標題:
陣列 (二)
[打印本頁]
作者:
張翼安
時間:
2016-3-4 20:26
標題:
陣列 (二)
作者:
蔡庭豪
時間:
2016-3-5 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int people[8]={30,31,33,32,31,35,28,29};
string classname[8]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0;i<8;i++)
{
cout<<"五年"<<classname[i]<<"班"<<people[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2016-3-5 11:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x[8]={30,31,33,32,31,35,28,29};
string y[8]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0;i<8;i++)
{
cout<<"一百年"<<y[i]<<"班"<<x[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2016-3-5 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int people[8]={21,22,21,22,21,22,21,22};
string className[8]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0;i<8;i++)
{
cout<<"五年"<<className[i]<<"班"<<people[i]<<"個人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-3-5 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[8]={30, 31, 33, 32, 31, 35, 28, 29};
string classname[8] = {"忠", "孝", "仁", "愛", "信", "義", "和", "平"};
for(int i=0; i<8; i++)
{
cout<<"五年"<<classname[i]<<"班有"<<n[i]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2016-4-22 15:38
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int people[8]={30,31,33,32,31,25,28,29};
string classname[8]={"忠","孝","仁","愛","信","義","和","平"};
for(int a=0;a<8;a++){
cout<<"五年"<<classname[a]<<"班"<<people[a]<<"人"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2