返回列表 發帖

陣列 (二)

本帖最後由 陳品肇 於 2019-7-20 11:16 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.               //0  1   2  3
  7.     int a[]= {30, 31, 0, 32, 31, 35, 28 ,29};  //一個陣列  一維陣列
  8.     string c[]= {"忠","孝","仁","愛","信","義","和","平"};

  9.     for(int i=0;i<8;i++)
  10.     {
  11.             cout<<"5年"<<c[i]<<"班有"<<a[i]<<"人"<<endl;
  12.     }
  13.    
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

本帖最後由 王建葦 於 2019-7-20 11:19 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       
  7.    int x[8]={30,31,33,32,31,35,28,29};
  8.    string y[8]={"忠","孝","仁","愛","信","義","和","平"};
  9.    for(int i=0;i<8;i++)
  10.    {
  11.        i+1;
  12.        cout<<"5年"<<y[i]<<"班有"<<x[i]<<"人"<<endl;   
  13.    }
  14.    
  15.    system("pause");
  16.    return 0;
  17. }
複製代碼
Jian-wei Wang

TOP

返回列表