0

ユーザーが4未満または10を超える数字を入力すると、無効であり、新しい数字を入力するように求められるようにしようとしています。私が抱えている問題は、彼らが適切な番号を入力すると、次の部分に進まないことです. これが私がこれまでに持っているものです:

#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <cstdlib>
#include <ctime>

int NewRandomNumber (int n);
void MakeQuestion (int n, int& a, int& b, int& atimesb);
bool UserAnswer (int a, int b, int atimesb);
void PrintScore (int numCorrect, int numAsked);

using namespace std;

int main()

{
string name;
int n;
string s;




cout << "Welcome to Multiplication Quiz 1000!" << endl;
cout << "Firstly what is your name?\n" << endl;

cin >> name;

cout << "\nHi " << name <<" !" << endl;
cout << "What difficulty would you like your quiz to be? Enter a value from [4 to 12]

      \nwith 4 being the easiest:\n" << endl;

do
{
cin >> s;
n = atoi(s.c_str());

if ( n >= 4 || n <= 10)



  if ( n < 4 || n > 10)
    {cout << "invalid. try again" << endl;
    }



{cout << "Ok" << endl;
cout << NewRandomNumber (4);
}

}
while ( n >= 4 || n <= 10);


 return 0;

 }

int NewRandomNumber (int n)

{ 

    n = rand()% 10 + 1;




return (n);

 }

void MakeQuestion (int n, int& a, int& b, int& atimesb)

{
}
4

3 に答える 3

4

あなたのwhile( n >= 4 || n <= 10)条件は常に真です。あなたは一緒に行くべき while (n <= 4 || n >= 10)です。

すでにここに投稿されているように、問題を解決するにはいくつかの方法があります。スラッカーが言ったように、ステートメントを使用しますが、 whilecontinue条件を必ず変更してください。そうしないと、機能しません。次のようになります。

while (true) {
    cin >> s;
    n = atoi(s.c_str());

    if (n <= 4 || n >= 10) {  
    // handles your exception and goes back to the beggining of the loop
    continue;
    }
    else {
    // the number was correct, so make your magic happen and then...
    break;
    }
} 
于 2013-03-19T04:06:47.760 に答える
1

フラグを使用して、この方法で試してください。

int flag=0;

do{

cin >> s;
n = atoi(s.c_str());


if ( n < 4 || n > 10)
{
  cout << "invalid. try again";
}
else
{
   flag=1;
   cout<<"OK"
}
}while(flag=0);

私がC++でプログラミングしてからかなり時間が経っているので、構文にいくつかの小さな問題があるかもしれません。しかし、ここでのロジックは問題ないはずです。

于 2013-03-19T03:51:30.220 に答える