好吧,所以我正在做作业,并且感到沮丧。作业要我询问用户一个数字,然后说出这个数字是偶数还是奇数,但是如果用户键入“ done”,程序将退出。

所以我的问题是如何同时检查输入的字符/整数,然后确定是哪个。

// ConsoleApplication2.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <string>
bool isEven(int userAnswer);
using namespace std;
int userAnswer;

int main()
{
    cout << "Which number would you like to check?" << endl;
    cin >> userAnswer;

    if (isEven(userAnswer) == false)
    {
        cout << userAnswer << " is a odd number." << endl;
    }
    else if (isEven(userAnswer) == true)
    {
        cout << userAnswer << " is a even number." << endl;
    }

    cin.get();
    cin.get();

    return 0;
}

bool isEven(int userAnswer)
{
    if (userAnswer % 2 == 0)
    {
        return true;
    }
    else
    {
        return false;
    }
}

最佳答案

读入一个字符串(在两种情况下都有效),然后自己解析该字符串。

10-06 07:05