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
|
|
|||||||||||||||
|
|
|
Why complicate matters?
Since you're commenting that you're outputting to a label, with linefeeds between each value, here's a better way:
Try that and see if it gives you what you want. |
||||||||||||||
|
|
|
For those of you who are lacking of humor, don't try this at home. |
||||||||||
|
|
|
Do you want to count to 9999? |
||||
|
|
|
I think Digitalex's solution is the most elegant but too memory-consuming. Here's a better option:
|
||
|
|
|
|
|
|||
|
|
|
|
Like Lasse said, simply print them in sequence. But you can do even simpler with Linq;
You could avoid the "ToList" as well, if you had a helper function (which I normally would have in a Utilities class);
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). |
||||||||||||
|
|
|
if you want to print the leading zeros too:
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. |
||||||||||
|
