Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I check for descending digits in an integer? For instance, if the user entered 98765, I would need to verify this and say the digits are descending and vice versa. I cannot convert the integer to a string, and there is no limit on the length. Oh, the numbers have to be >= 0.

I know I need to split the integer up, but I'm not quite sure how. Please help!

share|improve this question
1  
Is this homework? If so, please add the "homework" tag. – Richard Cook Oct 3 '10 at 22:22
If there's no limit on the length then you're probably operating on a String, not an int. – Tony Ennis Oct 3 '10 at 22:24
It is a lab/homework. It's not a String, if it were, I would use length() to compare the characters, but the lab specifically states I can't do that. – Valuga Oct 3 '10 at 22:48
@Tony Ennis I didn't realized it at first, but there can't be more than 10 digits. So, the longest entry would be 9876543210. – barjak Oct 4 '10 at 0:10
9876543210 doesn't fit into an int. >:-D – Tony Ennis Oct 4 '10 at 0:28
show 1 more comment

3 Answers

Not to give the whole answer, but consider this:

num = 98765;
digit = num % 10;

What will this code do? How could you use this to get each digit?

share|improve this answer

I won't give you the code (since it's homework), but:

  1. Use the modulus operator to get n mod 10, which will give you the lowest digit.
  2. If that lowest digit is one above the previous lowest digit, continue the loop; else quit the loop and say that the number is not descending.
  3. Divide n by 10.
  4. Go to step 1.
share|improve this answer

Look for the modulo operator. That will let you pick the rightmost value off the int. Once you have, divide the result by 10, and repeat. As you do so, compare the value you pick off to the value you picked off last time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.