返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char a[7]="曲書辰";
  7.     cout<<"大家好,我叫"<<a<<endl;
  8.     for(int i=0;i<=7;i++)
  9.     {
  10.      cout<<a[i];      
  11.     }
  12.      

  13.     system("pause");   
  14.     return 0;
  15. }
複製代碼

TOP

返回列表