返回列表 發帖

陣列 (三) - 宣告字串 2

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char n1[5]="Tony";   //字元陣列
  7.     char n2[4]={'T','o','n','y'};  //字元陣列
  8.     string n3[2]={"To","ny"};    //字串陣列
  9.     string n4="Tony";   //字串型態的變數
  10.     int a=3;       //整數型態的變數
  11.     char c='P';    //字元型態的變數
  12.     cout<<n1<<endl;  //輸出n1     
  13.     for(int i=0; i<4; i++)  //輸出n2
  14.         cout<<n2[i];
  15.     cout<<endl;
  16.     for(int i=0; i<2; i++)  //輸出n3
  17.         cout<<n3[i];
  18.     cout<<endl;
  19.     cout<<n4<<endl;  //輸出n4
  20.     cout<<a<<endl;   //輸出a
  21.     cout<<c<<endl;   //輸出c
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    char n1[5]="kaka";   
  7.     char n2[4]={'k','a','k','a'};  
  8.     string n3[2]={"ka","ka"};   
  9.     string n4="kaka";   
  10.     int a=5;      
  11.     char c='k';   
  12.     cout<<n1<<endl;      
  13.     for(int i=0; i<4; i++)  
  14.         cout<<n2[i];
  15.     cout<<endl;
  16.     for(int i=0; i<2; i++)  
  17.         cout<<n3[i];
  18.     cout<<endl;
  19.     cout<<n4<<endl;  
  20.     cout<<a<<endl;   
  21.     cout<<c<<endl;   
  22.    
  23.     system("pause");
  24.     return 0;   
  25.    
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char f[4]="Ian";
  7.     char f2[3]={'I','a','n'};
  8.     string f3[2]={"Ia","n"};
  9.     string f4="Ian";
  10.     int a=3;
  11.     char c='X';
  12.     cout<<f<<endl;
  13.     for(int i=0;i<4;i++)
  14.     cout<<f2[i];
  15.      cout<<endl;
  16.     for(int i=0;i<2;i++)
  17.     cout<<f3[i];
  18.      cout<<endl;
  19.    
  20.     cout<<f4<<endl;
  21.     cout<<a<<endl;
  22.     cout<<c<<endl;  
  23.    
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char n1[5]="nick";   
  7.     char n2[4]={'n','i','c','k'};   
  8.     string n3[2]={"nic","k"};     
  9.     string n4="nick";  
  10.     int a=4;      
  11.     char c='n';     
  12.     cout<<n1<<endl;      
  13.     for(int i=0; i<4; i++)   
  14.         cout<<n2[i];
  15.     cout<<endl;
  16.     for(int i=0; i<2; i++)   
  17.         cout<<n3[i];
  18.     cout<<endl;
  19.     cout<<n4<<endl;  
  20.     cout<<a<<endl;   
  21.     cout<<c<<endl;  
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

TOP

返回列表