C++ 的cin只输入数字及只输入1、2的代码试验


//*********************cin测试*********************
//non-numeric input skipped
//#include
//using namespace std;
//int main()
//{
//    int n=0;
//    cout<<"Please input a number:"<>n))
//    {
//        cin.sync();         //清除缓冲区
//        cin.clear();        //清除错误状态
//        while(cin.get()!='\n')
//            continue;
//        cout<<"the input is not a number,please input a number again:"<
//using namespace std;
//int main()
//{
//    int n=0;
//    cout<<"Please input a number:"<>n))
//    {
//        cin.sync();         //清除缓冲区
//        cin.clear();        //清除错误状态
//        while(cin.get()!='\n')
//            continue;
//        cout<<"the input is not a number,please input a number again:";
//
//    }
//    char ch;
//    cin>>ch;
//    cout<<"the input number n is:"<
using namespace std;
int main()
{
    int n=0;
    cout<<"Please input a number:"<>n))&&(n!=1)&&(n!=2)) //&&(n!=1)&&(n!=2) invalid
    while(!(cin>>n))
    {
        cin.sync();         //reset input buffer
        cin.clear();        //reset error state
        while(cin.get()!='\n')
            continue;           //get rid of bad input
        cout<<"the input is not a number,please input again:";

    }


//    if((n!=1)||(n!=2))        //valid,but only once
//        {
//            cout<<"Your input is a number,but not 1/2,please input again:";
//            cin>>n;
//        }


//    while((n!=1)||(n!=2))       //not valid
//    {
//        cin.sync();         //reset input buffer
//        cin.clear();        //reset error state
//        while(cin.get()!='\n')
//            continue;           //get rid of bad input
//        cout<<"the input is not a number,please input again:";
//
//    }

        if(n==1) cout<<"n:"<>n).get();             //valid,but only once
            }



    char ch;
    cout<<"please input a char:";
    cin>>ch;
    cout<<"the input number n is:"<

你可能感兴趣的:(C++ 的cin只输入数字及只输入1、2的代码试验)