Software Needed
-
Hello All I need a Software that can display all the combinations for a given number of digits, especially 14 digits and each digit has 10 choices from 0 to 9. Suppose that we have one digit so we will have 10 different combinations "10^1". Now suppose that we have two digits then we will have 100 different combinations "10^2", starting from 00 …. 99. The software that I need is to display all the combinations for a 14 digits number, then we will have 10^14 different combinations starting from 00 00 00 00 00 00 00 to 99 99 99 99 99 99 99. Thanks and Regards
yasso
-
Hello All I need a Software that can display all the combinations for a given number of digits, especially 14 digits and each digit has 10 choices from 0 to 9. Suppose that we have one digit so we will have 10 different combinations "10^1". Now suppose that we have two digits then we will have 100 different combinations "10^2", starting from 00 …. 99. The software that I need is to display all the combinations for a 14 digits number, then we will have 10^14 different combinations starting from 00 00 00 00 00 00 00 to 99 99 99 99 99 99 99. Thanks and Regards
yasso
So you're trying to hack a 14 digit code then are you? You won't get much help on this site. Take your hacking ways away with you.
Deja View - the feeling that you've seen this post before.
-
So you're trying to hack a 14 digit code then are you? You won't get much help on this site. Take your hacking ways away with you.
Deja View - the feeling that you've seen this post before.
Never mind the hacking ways that are bound to get this child very, very lost, it strikes me dumb that someone even has to ask how to enumerate all 10^14 combinations. :doh:
-
Hello All I need a Software that can display all the combinations for a given number of digits, especially 14 digits and each digit has 10 choices from 0 to 9. Suppose that we have one digit so we will have 10 different combinations "10^1". Now suppose that we have two digits then we will have 100 different combinations "10^2", starting from 00 …. 99. The software that I need is to display all the combinations for a 14 digits number, then we will have 10^14 different combinations starting from 00 00 00 00 00 00 00 to 99 99 99 99 99 99 99. Thanks and Regards
yasso
Hang on... think about it, man. How is this different from printing the numbers from 0 to 99? Or from 0 to 9? It's just a simple loop. Ok, you have to use long long integers because the numbers are big, but it's just a 'for' loop, isn't it? Anyway. Let it not be said that I am not willing to help.
#include <stdio.h> int main() { unsigned long long x; for (x = 0; x < 100000000000000ULL; x++) { printf("%lld\n", x); } return 0; }
P.S. Hang on again... if you print that to a file you will end up with an average of 7 * 10^14 bytes and no hard disk is that big. And by the way, this takes ages to run. Why do you want to have such a list? Do you realise how long it is? P.P.S. If you don't even know what to do with the C code and you just want an executable... well, sorry chap, we are not a charity. We are a community of developers.-+ HHexo +-