返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
char strc[23]="Hello!My name is Tony!";
for(int i=0;i<23;i++)
    cout<<strc[i];
cout<<endl;


system("pause");
return 0;

}

TOP

返回列表