Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 and .

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

Recommended Textbook for

Introductory Relational Database Design For Business With Microsoft Access

Authors: Jonathan Eckstein, Bonnie R. Schultz

1st Edition

1119329418, 978-1119329411

More Books

Students also viewed these Databases questions

Question

How do Excel Pivot Tables handle data from non OLAP databases?

Answered: 1 week ago