标签: c++ validation
如何验证用户是仅输入了字符而不输入数字?
char name[20]; cin.getline(name, 20); If(!cin) { cerr<<"ERROR"<<endl; cin.clear(); }