返回列表 發帖
本帖最後由 蔡沛倢 於 2023-9-15 20:44 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char a[5]="abcd";
  7.     cout<<"原本:"<<a<<endl;
  8.     cout<<"拆解:"endl;
  9.     for(int i=0;i<=3;i++)
  10.     {
  11.        cout<<a[i]<<endl;
  12.     }
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

返回列表