Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. IT & Infrastructure
  4. Software Needed

Software Needed

Scheduled Pinned Locked Moved IT & Infrastructure
4 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y Offline
    Y Offline
    yasso_115
    wrote on last edited by
    #1

    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

    P H 2 Replies Last reply
    0
    • Y yasso_115

      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

      P Offline
      P Offline
      Pete OHanlon
      wrote on last edited by
      #2

      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.

      My blog | My articles

      B 1 Reply Last reply
      0
      • P Pete OHanlon

        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.

        My blog | My articles

        B Offline
        B Offline
        Brady Kelly
        wrote on last edited by
        #3

        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:

        1 Reply Last reply
        0
        • Y yasso_115

          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

          H Offline
          H Offline
          hhexo
          wrote on last edited by
          #4

          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 +-

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups