Board logo

標題: 陣列 (二) [打印本頁]

作者: 張翼安    時間: 2016-3-4 20:26     標題: 陣列 (二)


作者: 蔡庭豪    時間: 2016-3-5 11:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int people[8]={30,31,33,32,31,35,28,29};
  7.     string classname[8]={"忠","孝","仁","愛","信","義","和","平"};
  8.     for(int i=0;i<8;i++)
  9.         {
  10.         cout<<"五年"<<classname[i]<<"班"<<people[i]<<"人"<<endl;
  11.         }      
  12.         system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 張健勳    時間: 2016-3-5 11:02

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x[8]={30,31,33,32,31,35,28,29};
  7.     string y[8]={"忠","孝","仁","愛","信","義","和","平"};
  8.     for(int i=0;i<8;i++)
  9.         {
  10.         cout<<"一百年"<<y[i]<<"班"<<x[i]<<"人"<<endl;
  11.         }      
  12.         system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 蔡季樺    時間: 2016-3-5 11:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int people[8]={21,22,21,22,21,22,21,22};
  7.     string className[8]={"忠","孝","仁","愛","信","義","和","平"};
  8.     for(int i=0;i<8;i++)
  9.     {   
  10.         cout<<"五年"<<className[i]<<"班"<<people[i]<<"個人"<<endl;
  11.     }      
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 吳承勳    時間: 2016-3-5 11:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[8]={30, 31, 33, 32, 31, 35, 28, 29};
  7.     string classname[8] = {"忠", "孝", "仁", "愛", "信", "義", "和", "平"};
  8.     for(int i=0; i<8; i++)
  9.     {
  10.         cout<<"五年"<<classname[i]<<"班有"<<n[i]<<"人"<<endl;
  11.     }
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 張文擇    時間: 2016-4-22 15:38

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.      int people[8]={30,31,33,32,31,25,28,29};
  7.     string classname[8]={"忠","孝","仁","愛","信","義","和","平"};
  8.    
  9.     for(int a=0;a<8;a++){
  10.             
  11.             cout<<"五年"<<classname[a]<<"班"<<people[a]<<"人"<<endl;
  12.             
  13.             
  14.     }
  15.          
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2