4

我最近创建了一个程序,它将根据用户输入创建一个数学问题。通过输入 1-4 程序可能会产生问题,或者用户可以通过输入 5 退出。我遇到的唯一问题是,当我输入一个字符时,程序会进入无限循环。我可以使用什么函数来检查输入是否不是数字,以便显示错误消息?


//CIS180 Assignment #4
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <ctime>
using namespace std;

int main()
{
    //Declare variables.
    int num1, num2, menuNum;
    int addInput, subInput, multInput, divInput;
    int addAnswer, subAnswer, multAnswer, divAnswer;
    int addSolution, subSolution, multSolution, divSolution;
    srand(time(0));
    //Display menu.
    cout << "Menu" << endl;
    cout << "1. Addition problem" << endl;
    cout << "2. Subtraction problem" << endl;
    cout << "3. Multiplication problem" << endl;
    cout << "4. Division problem" << endl;
    cout << "5. Quit this program" << endl << endl;
    cout << "Enter your choice (1-5): " << endl;
    cin >> menuNum;
    //Loop that will provide math problems when user inputs number.
    while(menuNum != 5)
    {
        //Check if the input is valid.
        while((menuNum < 1) || (menuNum >5))
        {
            cout << "The valid choices are 1, 2, 3 , 4, and 5. Please choose: " << endl;
            cin >> menuNum;
        }
        //Generate two random numbers for addition and display output.
        if(menuNum == 1)
        {
            num1 = rand()%500 + 1;
            num2 = rand()%500 + 1;
            addSolution = num1 + num2;
            cout << setw(5) << right << num1 << endl;
            cout << setw(2) << left << "+" << setw(3) << right << num2 << endl;
            cout << setw(5) << fixed << "-----" << endl;
            cin >> addAnswer;
            //Check if the addition answer input is correct.
            if(addAnswer != addSolution)
                cout << "Sorry, the correct answer is " << addSolution << "." << endl;
            else if(addAnswer == addSolution)
                cout << "Congratulations! That's right." << endl << endl;
        }
        .
            .
            .
4

3 回答 3

7

首先,您应该检测您的输入尝试是否成功:始终在读取检查读取尝试是否成功。接下来,当您确定无法读取某个值时,您需要将流重置为良好状态 usingclear()并且您需要摆脱任何不良字符,例如 using ignore()。鉴于通常输入字符,即用户必须在使用字符之前按回车键,因此通常可以轻松获取整行。例如:

for (choice = -1; !(1 <= choice && choice <= 5); ) {
    if (!(std::cin >> choice)) {
         std::cout << "invalid character was added (ignoring the line)\n";
         std::cin.clear();
         std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
    }
}

使用std::numeric_limits<std::streamsize>::max()是获取幻数的方法,该幻数ignore()根据需要生成尽可能多的字符,直到找到具有其第二个参数值的字符。

于 2013-09-21T19:34:27.160 回答
4
  1. 读取单个字符
  2. 如果此字符是数字,请使用它。
  3. 如果该字符不是数字,则转到 1。

实际上,忘记第 2 步。只需检查它是否是您真正想要的数字字符之一('1', '2', '3', '4', '5'):

char choice;

while(cin.get(choice)){
  if(choice == '5')
    break;

  switch(choice){
    default: printWrongCharacterMessage(); break;
    case '1': do1Stuff(); break;
    case '2': do2Stuff(); break;
    case '3': do3Stuff(); break;
    case '4': do4Stuff(); break;    
  }
}
于 2013-09-21T19:27:20.393 回答
1

您可以使用ctype.h中的isdigit

于 2013-09-21T19:30:54.390 回答