Question: How to write a C++ program which will generate 52 cards for a poker deck. Print all 52 cards out in 4 sections of 13
How to write a C++ program which will generate 52 cards for a poker deck. Print all 52 cards out in 4 sections of 13 cards in each section. This can be view are a 13-card hands of 4 players. You must label each section with "Player 1: ", "Hand 1: " or "Set 1: " etc. Replace 1 with 2, 3, and 4 respectively.
Note:
- To make it easy for you, repetition of random cards are allowed in this lab.
- You will need a very good opening comments including a detailed program description at the top of the program
- Correct line indentation is also required. All lines in a pair of { and } must be indented by 3-4 spaces.
- Must be in C++ program
C++ Random function In order to use rand() and srand() to generate integers randomly, you need to do the following: 1. Include two header files: stdlib.h and time.h 2. Put the current time as the seed for the srand() function srand(time (0)); 3. Call the rand() function as many time as you wish (in a loop statement). The rand() function will return an integer ranging from 0 to INT_MAX-1 (the largest integer can be used on your computer) inclusively. for (int i = 0; I
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
