Write a small program to simulate a raffle (a gambling game) for a group with 100 members. You can simply identify each member with a no-duplicated ID numbers from 01 to 100. A number ticket with a positive 4-digits integer number will be randomly created and assign to each member in the group. Print out the members' ID# with their number ticket to screen in a two columns table started with a headline.
To simulate the blind drawing game, the program should randomly create a positive 4-digits winning number. The first prize winner should be determined by the ticket number that is nearest or equal to the winning number. Print out the first prize winner's information to the screen. And then, the program should randomly create a second winning number to determine the second prize winner. Print out the second prize winner's information. And then, use the same algorithm to determine the third prize, fourth prize, fifth prize and sixth prize winners as well.
Please use a 1-D array to store the number tickets. Use a blind_drawing() function to determine the winner:
int Blind_drawing(int x, int n)