返回列表 發帖

陣列 (一)

假設五年級共有六個班,
1班有28人, 2班有33人, 3班有34人, 4班有30人, 5班有29人, 6班有31人,
試利用陣列與for迴圈, 列出五年級各班的人數.

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a[]={25,26,27,28,29,30};
  7.   for(int i=0;i<=5;i++)
  8.   {
  9.    cout<<"五年"<<(i+1)<<"班:"<<a[i]<<"人"<<endl;      
  10.   }   
  11.   system("pause");  
  12.   return 0;  
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={27,28,25,29,30,29};
  7.     cout<<a[2]<<endl;
  8.     cout<<a[0]<<endl;
  9.     cout<<a[5]<<endl;
  10.     for(int i=0; i<=5; i++)
  11.     {
  12.             cout<<"五年"<<(i+1)<<"班: "<<a[i]<<"人"<<endl;        
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[6]={12,45,65,54,85,75};
  7.     //cout<<a[5]<<endl;
  8.     //cout<<a[4]<<endl;
  9.     //cout<<a[1]<<endl;
  10.     for(int i=0; i<=5; i++)
  11.     {
  12.         cout<<"5年"<<(i+1)<<"班: "<<a[i]<<"人"<<endl;        
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={30,34,36,26,24,26};
  7.     //cout<<a[2]<<endl;
  8.     //cout<<a[5]<<endl;
  9.     //cout<<a[0]<<endl;
  10.     for(int i=0, i<=5; i++)
  11.     {
  12.             cout<<"5年"<<(i+1)<<"班: "<<a[i]<<"人"<<endl;
  13.     }
  14.     system("pause");   
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>   //載入基本輸入/輸出工具
  2. #include<cstdlib>    //載入基本函式庫
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={27,28,25,29,30,29};
  7.     cout<<a[2]<<endl;
  8.     cout<<a[0]<<endl;
  9.     cout<<a[5]<<endl;
  10.     for(int i=0; i<=5;i++)
  11.     {
  12.         cout<<"5年"<<(i+1)<<"班: "<<a[i]<<"人"<<endl;   
  13.     }
  14.     system("pause");    //讓畫面暫停
  15.     return 0;           //歸零
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={27 28 25 29 30 29};
  7.     cout<<a[2]<<endl;
  8.     cout<<a[0]<<endl;
  9.     cout<<a[5]<<endl;
  10.     for(int i=0; i<=5; i++)
  11.     {
  12.         cout<<"5year"<<(i+1)<<"class:"<<a[i]<<"people"<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={17,18,15,12,11,44};
  7.     //cout<<a[4]<<endl;
  8.     //cout<<a[2]<<endl;
  9.     for(int i=0;i<=5;i++)
  10.     {
  11.       cout<<"5年"<<(i+1)<<"班:"<<a[i]<<"人"<<endl;      
  12.             }
  13.     system("pause");
  14.     return 0;
  15.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a[]={25,26,27,28,29,30};
  7.   for(int i=0;i<=5;i++)
  8.   {
  9.    cout<<"五年"<<(i+1)<<"班:"<<a[i]<<"人"<<endl;      
  10.   }   
  11.   system("pause");  
  12.   return 0;  
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={27, 28, 25, 29,};
  7.     //cout<< a[2]<<endl;
  8.     //cout<< a[0]<<endl;
  9.     for (int i=0; i<4; i++)
  10.     {
  11.         cout<<"五年"<<(i+1)<<"班:"<<a[i]<<"人"<<endl;
  12.         }
  13.       
  14.     system ("pause");
  15.     return 0;
  16.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int a[]={29,30,26,28,31,25};
  7.       //cout<<a[2]<<endl;
  8.       //cout<<a[0]<<endl;
  9.       //cout<<a[5]<<endl;
  10.       for(int i= 0; i<= 5; i++)
  11.       {
  12.         cout<<"5年"<<(i+1)<<"班有"<<a[i]<<"人"<<endl;      
  13.       }
  14.       
  15.       
  16.       
  17.       system("pause");
  18.       return 0;
  19.       }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={26,22,27,28,29,24};
  7.   for(int i=0;i<=5;i++)
  8.   {
  9.    cout<<"五年"<<(i+1)<<"班:"<<a[i]<<"人"<<endl;      
  10.   }   
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a[]={26,22,27,28,29,24};
  7.   for(int i=0;i<=5;i++)
  8.   {
  9.    cout<<"五年"<<(i+1)<<"班:"<<a[i]<<"人"<<endl;      
  10.   }   
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

TOP

返回列表