C++中关于流的概念

怎么从键盘中读取一个整数并包括错误处理

int a;

while (cin.get(ch1)) {
            if (ch1=='\n')
                cout<<"input the right number:";  //第一次输入换行;
            else if (cin.get(ch2),ch2=='\n') {
                a=ch1-'0';
                if (a>0 && a<10)
                    break;
                else
                    cout<<"input the right number:";  //一位数字输入错误;
            }
            else if(cin.get(ch3),ch3=='\n'){
                a=(ch1-'0')*10+ch2-'0';
                if (a>0 && a<16)
                    break;
                else
                    cout<<"input the right number:";  //两位数字输入错误;

            }    
            else {
                cout<<"input the right number:";  //多次输入错误,清除缓冲流;
                while (cin.get(ch3),ch3!='\n')
                    ;
            }
            
            
        }

原文链接: https://www.cnblogs.com/chenchenluo/archive/2011/12/15/2289417.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    C++中关于流的概念

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/38617

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 下午3:14
下一篇 2023年2月8日 下午3:14

相关推荐