Question
Write a C program that simulates a slot machine at a casino playing 12 spins. You can assume that there are 3 columns and 14
Write a C program that simulates a slot machine at a casino playing 12 spins. You can assume that there are 3 columns and 14 symbols with internal representation as follows (using one main function) Symbol Internal Storage
Diamond 0
Heart 1
Apple 2
Orange 3
Lime 4
Sun 5
Mountain 6
Mickey 7
Banana 8
Cherry 9
Garfield 10
Television 11
Coolers 12
Lemonade 13
Your program should randomly generate 12 spins and print out the results for the 12 spins. After printing all the spins your program should also print the number of spins in which the user got 2 or more same symbols. Example run: Mickey Mickey Coolers Apple Orange Diamond Lime Heart Sun Mountain Coolers Mountain You have 2 or more same symbols in 2 spins. 1) Name your program spins.c.
2) Use rand() function to generate a random number. With the help of rand () function, a number in range of lower to upper can be generated as num = (rand() % (upper lower + 1)) + lower
3) rand() function generates the same sequence again and again every time the program runs. Use srand() function with time to set seed for rand() function so it generates different sequences of random numbers. Include the following statement at the beginning of the main function: srand(time(NULL));
4) To use the rand() and time function, you need to include
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started