返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   string str1="hello";
  7.   cout<<str1<<endl;
  8.   
  9.   char str2[6]="hello";
  10.   for(int i=0; i<=4; i++)
  11.       cout<<str2[i];
  12.       cout<<endl;
  13.       
  14.   char str3[5]={'h','e','l','l','o'};
  15.   for(int i=0; i<=4; i++)
  16.       cout<<str3[i];
  17.        cout<<endl;
  18.       
  19.   string str4[2]={"he","llo"};   
  20.   for(int i=0; i<=1; i++)
  21.       cout<<str4[i];
  22.        cout<<endl;
  23.   system ("pause");   
  24.   return 0;
  25.    
  26. }
複製代碼

TOP

返回列表