当前位置: 代码迷 >> 综合 >> C++ How to avoid the enter key when using cin and getline
  详细解决方案

C++ How to avoid the enter key when using cin and getline

热度:76   发布时间:2023-12-14 21:03:14.0

cout<<"Enter your last name: ";
cin.ignore(); //忽略流中的一个字符,这里忽略的是一个回车,没加这个时,name2接受的其它是回车
getline(cin,name2);
  相关解决方案