C++ cin.get与cin.getline记录错误

cin.get 不舍弃输入中的enter,cin.getline则会

cin.get遇到enter马上结束输入

C++ cin.get与cin.getline记录错误_第1张图片

而cin.getline则不会

如果需要cin.get遇到enter不停止

则需 

C++ cin.get与cin.getline记录错误_第2张图片

两者都可以读入空格

get:

一参数 cin.get(ch);

以下必须得是char[]类型

二参数cin.get(ch,10);后面的数字指定输入多少位

三参数cin.get(ch,10,',');最后面的 '' 代表结束的位置,同时取消了enter的结束

 点赞!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

你可能感兴趣的:(知识,c++,开发语言)