hi , i'm new to this forum , may i say this is a great site , now i want some pointer pls on writing this program in c++ ,
i am trying to write a program where the user input 10 numbers and from the the program will generates let's say 20 best combinations set of 3 possibles
what i mean is this let say the user input 0 3 4 6 7 8 9 1
and it will generate a couple set of 3 for example : 046 037 etc
or A B C D E F G H I J = ABF ABG ABH ABI ABJ OR FGH FGI FGJ OR GHI GHJ
i will really appreciate if you or anyone can help me on that thx for everything.
I would probably start by putting each character the user inputs into an array and then randomly combine three elements in the array. I hope that this is some help to you.