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

I am looking for an idea about a condition that stop when an integer reach to the max number of its digit..

i.e

the max number of 2 digits number is 99

the max number of 5 digits number is 99999

I got this one

while(x != ([10^number of digits] -1))
{
    x++;
}
cout << x;

but actually i am dealing with string, which may i have a huge numbers, and this code start to get very long execution time after 9 digits.

So can any one give me a good idea about that, Thanks.

share|improve this question
1  
What programming language ? Please use appropriate tags. – Paul R Jan 20 at 9:37
I am using c++ ..srry :) – Mahmoud Jan 20 at 9:38
1  
What are you really trying to accomplish? Do you just want to obtain a number that is N 9s? If so, that's easy. At any rate, an easy improvement to the code you have there would be to compute 10^number of digits - 1 before your loop and not during the loop. – JLRishe Jan 20 at 9:41

closed as not a real question by Paul R, aib, Mario, RolandoMySQLDBA, dreamcrash Jan 21 at 0:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

How about:

done = false;
while(!done)
{
    x++;
    done = true;
    for (i=0 ; i<number_of_digits; i++)
       if x[i] != '9'
          done = false;
}
cout << x;
share|improve this answer
This is what I was I wanted, thanks. – Mahmoud Jan 20 at 9:59

It would be a bit faster to use

x = ([10^number of digits] -1);

instead of

while(x != ([10^number of digits] -1))
{
    x++;
}
share|improve this answer

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