博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++正确的cin输入
阅读量:6680 次
发布时间:2019-06-25

本文共 436 字,大约阅读时间需要 1 分钟。

 

void test1(void){	int number;	cout << ">> pls input a integer number:";	while(cin >> number, !cin.eof())	{		if(cin.bad()) {			cout << "stream has corrupted!" << endl;			return;		} else if (cin.fail()) {			cin.clear();			cin.ignore(std::numeric_limits
::max(), '\n'); cout << ">> pls input a integer number:"; continue; } cout << "number = " << number << endl; }}

  

转载于:https://www.cnblogs.com/cthon/p/9315269.html

你可能感兴趣的文章
java获取项目classPath路径
查看>>
Add Swap on Ubuntu
查看>>
android 介绍Retrofit的简单使用
查看>>
##宏—紧跟
查看>>
把你开发的网站免费发布到互联网上
查看>>
数学函数
查看>>
js获取链接地址
查看>>
Android自动化问题小结
查看>>
Linux/Uninx下Tcpdump命令详解
查看>>
mac 使用“终端”远程登录 linux 主机
查看>>
avhttp终于支持了gzip/chunked
查看>>
《设计模式 系列》- 创建型模式 - 状态模式
查看>>
WebService之Axis2快速入门(4): 传输二进制文件
查看>>
subversion中去除不需要的目录
查看>>
Android内核开发:从源码树中删除出厂的app应用
查看>>
Node.js+Express商业开发中的安全性考虑
查看>>
Python 学习笔记 - 上下文
查看>>
linux技术手册
查看>>
jquery的验证formValidator
查看>>
poj 其他
查看>>