Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ programming question Probleml: You have four identical prizes to give away and a pool of 25 finalists. The finalists are assigned numbers from 1

C++ programming question image text in transcribed
Probleml: You have four identical prizes to give away and a pool of 25 finalists. The finalists are assigned numbers from 1 to 25. Write a program to randomly select the numbers of 4 finalists to receive a prize. Make sure not to pick the same number twice. For example, picking finalists 3, 15, 22, and 14 would be valid but picking 3, 3, 31, and 17 would be invalid, because finalist number 3 is listed twice and 31 is not a valid finalist number. Print the numbers of the four finalists. At the beginning, ask the user to enter an integer which you pass in to the srand.) function. Do not use srandtime(NULL) as this will generate random output which will not pass the test cases. See the posted template on ZyBooks. cout > randomNum; srand(randomNum); To receive full credit, you need to implement a function validRandomNumberO (other than main0)

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

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

0123814790, 9780123814791

More Books

Students also viewed these Databases questions