I was assigned to write the following program :
Create a program that automatically picks six lottery numbers for each dollar a
customer pays. The first five numbers must all be unique (non-repeating), and must
all be within the range 1 through 50 inclusive, while the sixth number can be any
number within the range 1 through 60 inclusive, meaning that the number may
even be the same as one of the first 5 numbers.
The program should prompt the customer for how many dollars he or she wishes
to spend, and then produce that many sets of six numbers.
Demonstrate the use of the following in your solution:
• Iteration (Looping)
• Arrays or Vectors or both (Your choice)
• Random number generator
For this project keep your entire solution in one file.