Digit Check in C++

  • C/C++
  • Thread starter madmike159
  • Start date
  • Tags
    C++
  • #1

madmike159

Gold Member
371
0
I want the user to enter a number from 1 to 9, then check its in that range and a number.
This is the code I have, but its not working.
Code:
	int NumPlayers = 0;
	do
	{
		cout << "Please enter a interger from 1 to 9." << endl;
		cin >> NumPlayers;
	}
	while(isdigit(NumPlayers)  && (1 <= NumPlayers <= 9));

Any Suggestions?
 

Answers and Replies

  • #2
Any Suggestions?
Print statements!
print out NumPlayers and your logic and see that everything is evaluating as it should be.

Also, it's been a while, but I'm pretty sure you can't do:
(1 <= NumPlayers <= 9)

You have to break it up:
((1<=NumPlayers) && (NumPlayers<=9))
 
  • #3
In situations like this, it's instructive to insert code that displays your input and the results of your tests explicitly:

Code:
int NumPlayers = 0;
do
{
    cout << "Please enter a interger from 1 to 9." << endl;
    cin >> NumPlayers;
    cout << "You entered " << NumPlayers << "." << endl;
    if (isdigit(NumPlayers))
        cout << "NumPlayers is a digit." << endl;
    if (NumPlayers >= 1)
        cout << "NumPlayers is >= 1." << endl;
    if (NumPlayers <= 9)
        cout << "NumPlayers is <= 9." << endl;
}
while(isdigit(NumPlayers)  && (1 <= NumPlayers) && (NumPlayers <= 9));

This technique often enables you to find the solution faster than by posting to the Internet and waiting for responses. :smile:
 
  • #4
or better yet, use a debugger.
Set a breakpoint at the top, set watches on the variables you are interested in and then step through each line.
 
  • #5
but its not working.

Just another tip: In general, it really really helps people if you say exactly what you mean by "not working."

Does the program fail to compile? If so, what error messages did you get?

Does the program seem to compile OK, but doesn't give correct results when it runs? If so, what results did you expect and what did you actually get?

Or did your monitor screen melt down, or did you get electric shocks to your fingers through the keyboard, or...? :uhh:
 
  • #6
Ok thanks, I'll remember that next time. I fixed the problem now. Thanks for the help.
 
  • #7
Code:
(1 <= NumPlayers <= 9)

Actually this is a correct expression :wink:
 
  • #8
Actually this is a correct expression :wink:

I wonder if the compiler optimizes it to if(true) { ... }
 
  • #9
The user interface of your program --
Code:
cout << "Please enter a interger from 1 to 9." << endl;
-- could use some editing. Note spelling of integer.

"Please enter an integer from 1 to 9."

To expand on what Borek and DavidSnyder said, the expression 1 <= NumPlayers <= 9 always evaluates to true, regardless of the value of NumPlayers.

This expression is evaluated as if it were written as ((1 <= NumPlayers) <= 9).

The logical expression 1 <= NumPlayers will evaluate to true (1) or false (0), depending on the value of NumPlayers.

The expressions (0 <= 9) and (1 <= 9) both evaluate to true (1).

The moral of the story is that the continued inequality that is used in mathematics is syntactically correct but semantically incorrect in all programming languages based on C.
 
  • #10
In addition to all problems already mentioned, the call to isdigit() does not do what you think it does.

isdigit() is normally called with a 'char' parameter and it returns nonzero if the parameter is between '0' and '9' (or, in ASCII, between 0x30 and 0x39). Your NumPlayers is an 'int'. Therefore it will already have been converted from char to integer. There's no need to call isdigit.
 

Suggested for: Digit Check in C++

Replies
2
Views
68
Replies
14
Views
2K
Replies
25
Views
1K
Replies
2
Views
759
Replies
8
Views
584
Replies
9
Views
405
3
Replies
73
Views
3K
Back
Top