Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2. Write a C program that simulates a slot machine at a casino playing 12 spins. You can assume that there are 3 columns and

image text in transcribed

2. 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 Symbol Diamond Heart Apple Orange Lime Internal Storage 0 4 Mountain Mickey Banana Cherry Garfield Television Coolers Lemonade 6 7 9 10 12 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

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started