cin会忽略空格和回车
getchar与scanf不会忽略回车和空格
// exam1.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <iostream> using namespace std; int main(void) { char ch; ch=getchar(); printf("%d\n",ch); cin>>ch; printf("%d\n",ch); system("pause"); return 0; }输入:回车+回车+1+回车
输出结果:
cin与getchar、scanf之间的区别,布布扣,bubuko.com
原文地址:http://blog.csdn.net/cjc211322/article/details/38360463