标签:names end cin str std name ios pac code
#include <iostream>
using namespace std;
int main()
{
char name[50];
cout<< "你的名字:";
cin >> name;
cout <<"您是 :"<<name<<endl;
}
你的名字:lg
您是 :lg
标签:names end cin str std name ios pac code
原文地址:https://www.cnblogs.com/luoganttcc/p/10525160.html