標題:
陣列 (二)
[打印本頁]
作者:
tonyh
時間:
2015-8-28 20:35
標題:
陣列 (二)
[attach]1358[/attach]
作者:
曾挺桂
時間:
2015-8-28 20:51
本帖最後由 曾挺桂 於 2015-8-28 20:53 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[]={30,31,33,32,31,35,28,29};
string c[]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0; i<8; i++)
cout<<"五年"<<c[i]<<"班"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-8-28 20:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int n[]={30, 31, 33, 32, 31, 35, 28, 29};
string c[]={"終","笑","人","礙","釁","異","劾","憑"};
for(int i=0; i<8; i++)
cout<<"5年"<<c[i]<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王翔
時間:
2015-8-28 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[8]={30,31,33,32,31,35,28,29};
string c[]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0; i<8; i++)
{
cout<<"5年"<<c[i]<<"班"<<n[i]<<"人"<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-8-28 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int n[]={30, 31, 33, 32, 31, 35, 28, 29};
string c[]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0; i<8; i++)
cout<<"5年"<<c[i]<<"班有"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-8-28 20:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[8]={30,31,33,32,31,35,28,29};
string c[8]={"忠","孝","仁","愛","信","義","和","平"};
for(int i=0; i<8; i++)
cout<<"5年"<<c[i]<<"班"<<n[i]<<"人"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-8-28 20:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n [] = {30 ,31 ,33 ,32 ,31 ,35 ,28, 29 };
string c [] = {"忠", "孝", "仁", "愛", "信", "義", "和", "平"};
for(int i = 0; i < 8; i++)
cout << "五年" << c[i] << "班有" <<n[i]<< "人" <<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2