返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         string word1 = "Good morning!";
  7.         char word2[14] = "Good morning!";
  8.         for (int i = 0;i <= 13;i++)
  9.         {
  10.                 cout << word1[i];
  11.         }
  12.         cout << endl;
  13.         for (int i = 0;i <= 13;i++)
  14.         {
  15.                 cout << word2[i];
  16.         }
  17.         cout << endl;
  18.         system("pause");
  19.         return 0;
  20. }
複製代碼

TOP

返回列表