vote up 1 vote down star

Hi all, just wondering if anyone had an algorithm lying around that printed all possible combos from 0000 to 9999 (trying to crack code into old phone and new to learning C#)...Million thanks. Bela

flag
8  
looks like homework... – Frank Bollack Sep 23 at 7:39
No - just trying to crack code into my old phone actually – The only girl in IT Sep 23 at 7:50
10  
When you think about it, an algorithm which does anything for all possible combos from 0000 to 9999 is called counting. Welcome to StackOverflow. – pavium Sep 23 at 7:54
As pavium said, all the possible combos is simply counting from 0001 to 9999. There's no need for combinatorics. – phoebus Sep 23 at 8:01
Can you edit your question to indicate the new reason? I will take away my down-vote. – unknown (google) Sep 23 at 8:04

7 Answers

vote up 23 vote down

Why complicate matters?

for (Int32 index = 0; index < 10000; index++)
    Console.Out.WriteLine(index.ToString("0000"));

Since you're commenting that you're outputting to a label, with linefeeds between each value, here's a better way:

List<String> values = new List<String>();
for (Int32 index = 0; index < 10000; index++)
    values.Add(index.ToString("0000"));
label1.Text = String.Join(
    Environment.NewLine,
    values.ToArray());

Try that and see if it gives you what you want.

link|flag
Simple thing that works ;o) – Cédric Sep 23 at 7:42
Thanks! But for some reason this is going into an infinite loop (I think, cause the program just freezes) – The only girl in IT Sep 23 at 7:57
Not with the code I posted, so you must've made an error when you wrote it down into your own program. Please post the code that freezes in your question. – Lasse V. Karlsen Sep 23 at 8:11
1  
For that matter, what's wrong with int instead of Int32? – Eamon Nerbonne Sep 23 at 8:35
1  
I doubt it freezes, but it might take some time, since manipulating a string like that build 10000 temporary string. I'll post a better way. – Lasse V. Karlsen Sep 23 at 10:17
show 4 more comments
vote up 7 vote down

WTF entry:

Console.WriteLine("0000"); 
Console.WriteLine("0001"); 
Console.WriteLine("0002"); 
Console.WriteLine("0003"); 

// snip everything in the middle

Console.WriteLine("9998"); 
Console.WriteLine("9999");

For those of you who are lacking of humor, don't try this at home.

link|flag
That's actually incorrect, she has indicated it should be 4 digit aligned. – unknown (google) Sep 23 at 8:05
Fix the thing so that it is 4 digit aligned. – Ngu Soon Hui Sep 23 at 8:12
An answer worthy of question. – Pavel Minaev Sep 23 at 8:19
Sad thing is that I have seen something like that in the wild ... – Brian Rasmussen Sep 23 at 8:24
Note that for a complete WTF answer you should actually post all those lines here (you'll get a scrollbar for the code field), but then leave out a random line, just for kicks. – Lasse V. Karlsen Sep 23 at 8:57
show 4 more comments
vote up 1 vote down

Do you want to count to 9999?

link|flag
I wanna get all possible combos – The only girl in IT Sep 23 at 7:59
and how is that different from counting? – Brian Rasmussen Sep 23 at 8:24
vote up 1 vote down

I think Digitalex's solution is the most elegant but too memory-consuming.

Here's a better option:

foreach (var number in Enumerable.Range(0, 10000).Select(i => i.ToString("0000")))
    Console.WriteLine(number);
link|flag
vote up 0 vote down
for (int index = 0; index < 10000; index++)
{
    Console.WriteLine(index);
}
link|flag
vote up 0 vote down

Like Lasse said, simply print them in sequence. But you can do even simpler with Linq;

Enumerable.Range(0, 9999).ToList().ForEach(Console.WriteLine);

You could avoid the "ToList" as well, if you had a helper function (which I normally would have in a Utilities class);

public static void ForEach<T>(this IEnumerable<T> elements, Action<T> action)
{
    foreach (var element in elements) { action(element); }
}

Note that this utility method is not strictly required for it to work, but would greatly diminish the memory requirements (since ToList actcually creates a list of all the numbers in memory).

link|flag
5  
So you are that guy, the guy that shoots moskitos with missile launchers and AK47... I didn't know. – Clement Herreman Sep 23 at 8:00
I downvoted you for suggesting a 'ForEach' extension, which is completely useless. The 'foreach' keyword is good enough, and this extension would only be confusing. – silky Sep 23 at 8:00
I see your point, but it's a matter of personal opinion I think. Personally, I prefer one-liners for simple things like these. – Digitalex Sep 23 at 8:28
Why do you need ToList ? – Konstantin Sep 23 at 8:33
Also you are not keeping starting zeroes in your solution. – Konstantin Sep 23 at 8:34
show 5 more comments
vote up -2 vote down

if you want to print the leading zeros too:

for(int iC1 = 0; iC1 < 10000; iC1++)
{
 if(iC1 < 10)
 {
   Console.WriteLine("000" + iC1.ToString());
 }
 else if(iC1 < 100)
 {
   Console.WriteLine("00" + iC1.ToString());
 }
 else if(iC1 < 1000)
 {
   Console.WriteLine("0" + iC1.ToString());
 }
 else
 {
   Console.WriteLine(iC1.ToString());
 }
}

I know this solution is not elegant, but it's easyer to understand this way.

btw: you have to compile this as C# Console Application, not as Windows Forms Application.

link|flag
1  
How is this easier to understand than just index.ToString("0000") or String.Format("{0:0000}",index)? – unknown (google) Sep 23 at 8:11
Why would you do this instead of the format specifier "0000" as in the existing answer that was posted half an hour ago? – Greg Beech Sep 23 at 8:12
Geez thanks! I never expected so many answers so quickly! I will try this later, being called to dinner and have to go! Thanks again! – The only girl in IT Sep 23 at 8:16
Because when I was a C# beginner, I had some troubles understanding format strings etc. I thought it may be easier to understand... – Emiswelt Sep 23 at 8:17

Your Answer

Get an OpenID
or

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