Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Problem-4 (7 points): Craps is a popular dice game played in casinos. Write a program to play a variation of the game, as follows: Roll

image text in transcribed
image text in transcribed
Problem-4 (7 points): Craps is a popular dice game played in casinos. Write a program to play a variation of the game, as follows: Roll two dice. Each die has six faces representing values 1,2,, and 6 , respectively. Check the sum of the two dice. If the sum is 2,3 , or 12 (called craps), you lose; if the sum is 7 or 11 (called natural), you win; if the sum is another value (i.e., 4,5,6,8,9, or 10 ), a point is established. Continue until you roll either a 7 (you lose) or the same point value (you win). Check the craps game rules online if something is unclear. Your program acts as a single player. Here are some sample runs: You rolled 5+6=11 You win You roiled 1+2=3 You lose You rolled 4+4=8 point is 8 You rolled 6+2=8 You win You rolled 3+2=5 point is 5 You rolled 2+5=7 You lose Problem-5 (7 points): Write a function that counts the occurrence of each letter in the string using the following header: void count(const string \& s) Write a test program that reads a string, invokes the count function, and displays the non-zero counts. Here is a sample run

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

Datacasting How To Stream Databases Over The Internet

Authors: Jessica Keyes

1st Edition

007034678X, 978-0070346789

More Books

Students also viewed these Databases questions