Create a roulette game

Assignment Help C/C++ Programming
Reference no: EM131347916

Project:

Decision Statements

Directions (Read CAREFULLY and follow COMPLETELY):

- Create the following programs in C++ that perform the purpose described and show the sample output (with user input where applicable).

- Include at least three lines of comments/remarks in each program, including your name, the date, and a description of the program.

- Upload your .cpp source files

- Add pseudocode or a flowchart for ONE of the two programs below and add it to your Word/PDF document.

1.TwoNums

Create a .cpp program named hw3-1.cpp (name the source file this). In the main part of the program, prompt the user to enter two integer numbers. Then, call a function and pass two numbers into it. Use an IF - ELSE - IF - ELSE statement to compare the two numbers and then display one of three messages:
The two numbers are equal.
The first number _ was larger than the second number _.
The second number _ was larger than the first number _.

2.Password Strength Program
Create a .cpp program that verifies the strength of a password that a user is entering is strong (complex/secure) enough. In the main area of the program, prompt the user to enter a password. Then, call a function, passing into it the password that they entered.
In the function, use whatever .cpp commands or built-in functions are available to ensure:
a. The password is at least 8 characters in length.
b. The password is mixed case (upper and lower).
c. You have at least one of these valid special characters in your password:
$ ! @ % ^ & * #
The function will determine if the password is strong enough and then output the correct message. Here is a sample run and output from the program:

First Run:
Enter a password: thisis
Your password length is too short. Please choose a password that is at least 8 characters long.
Your password is not a mixed case. Please choose a password with mixed case.
You do not have a valid special character in your password. Please add at least one special character.

Second Run:
Enter a password: thisismypassword
Your password is not a mixed case. Please choose a password with mixed case.
You do not have a valid special character in your password. Please add at least one special character.

Third Run:
Enter a password: Thisismypassword
You do not have a valid special character in your password. Please add at least one special character.

Fourth Run:
Enter a password: thisis!myPassWORD
Thank you. Your password is valid.

Project: Decision Structures

1.Create a Roulette Game
Create a .cpp source file named hw3-ec1.cpp that is a roulette game.

a. The game will display the possible bet types. There will be 6 types of bets on this roulette table.
Even (payout: 1-1) Odd (payout: 1-1)
1st 12 (payout: 2-1) 2nd 12 (payout: 2-1)
3rd 12 (payout: 2-1) Specific number 1-36 (payout: 35-1)

b. The game will allow the player to enter their bet type.

c. The game will allow the player to enter the bet amount.

d. If the player is playing on a specific number, the game will need to allow the player to enter the number they are placing their chip on.

e. The game should then randomly choose a roulette number to land on (1-36).

f. The game should then determine if the player one and display the appropriate output.

a. If the player did not win, indicate so, and what their number and the roulette number were (if they chose a number, else state their bet range: Even, Odd, 1st 12, 2nd 12, 3rd 12).

b. If the player did win, indicate so and what their winnings are.

Verified Expert

This program is about the roulette game. According to this program there are different bets on which user can play and program ask about their choice and money they want to bet. Program will tell user about the landing of the ball on particular slot with their winning or losing status. At last the winning or losing status on bet and remaining amount with them.

Reference no: EM131347916

Questions Cloud

Determine the reaction equation and molal air fuel ratio : Determine the reaction equation and molal air/fuel ratio for the combustion of ethyl alcohol, C2H5 (OH) , with 100.% theoretical air.
Why was whole foods successful initially : 1. Why was Whole Foods successful initially? Why has it lost its competitive advantage and is underperforming its competitors? 2. What value driver is Whole Foods using to remain differentiated in the face of competitors selling organic foods?
What is your selected company mission statement : BUS 7142 - Strategic Management (Capstone). What is your selected company's mission statement (mission, vision, and key values)? Evaluate your company's mission statement with special attention to its relevance, classy, and motivational impact on ..
Determine the reaction equation and molal air fuel ratio : Determine the reaction equation and molal air/fuel ratio for the combustion of dimethyl ketone (acetone), CO(CH3)2, with 0.00% excess air.
Create a roulette game : Create the programs in C++ that perform the purpose described and show the sample output - Create a .cpp program that verifies the strength of a password that a user is entering is strong
Set up a transition monitoring team : What would be your plan of action to set up a transition monitoring team (guiding coalition), what would be this team's role, and how would you know when their work is completed?
Perform a monte carlo simulation : Beginning with a random configuration on a fairly large lattice (L = 32), perform a single run of 20 MC sweeps at T = 5.0. and look at the printout of the configuration.
Estimated direct-labor cost for job description : We are interested in finding the estimated direct-labor cost for the job description of industrial electrician. The year consists of 52 40-hour weeks, and overtime is seasonal for 12 weeks consisting of Saturday work of 8 hours. The contract allow..
Stock need to be for the firm to issue the new shares : Tennessee Valley Antiques would like to issue new equity shares if its cost of equity declines to 12.5 percent. The company pays a constant annual dividend of $2.10 per share. What does the market price of the stock need to be for the firm to issue t..

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Write a c++ program to help a local restaurant automate

Write a C++ program to help a local restaurant automate its breakfast billing system. The program should do the following:a. Show the customer the different breakfast items offered by the restaura

  Find out if damjibhai can win

Once a jewel type is removed from the necklace, all other instances of the same jewel type is treated as polished by the person who removed the jewel

  Determine the letter grade associated with the average

Create a loop structure to display and calculate the factorial of the larger number provided by the user - What if these were test scores? Calculate the average of the two numbers provided.

  Compdateoracle is a perfect function

CompdateOracle is a perfect function without any bug to compare dates, Find out 3 issues with this random testing scheme. For each of the issue found, propose an improvement. Mention issue in one line and improvement proposal in less then 3 lines. Fi..

  Refined into a generalization/ specialization hierarchy

Which classes might be refined into a generalization/ specialization hierarchy? List the superclass and any subclasses for each of them.

  Consider the following main function

Consider the following main function:Which of the following is an object of a template class?

  Find the average length of the strings in the vector

Write a C++ function: Here is the function you should implement:

  Perimeter of a trapezoid

Write a function in c that will return the perimeter of a trapezoid

  How to call a function from main

Call a function from main(), passing one value to it. Return TWO values, both the square of the number and the number to the power of three.

  Program that stores a series of numbers in a binary tree

Write a program that stores a series of numbers in a binary tree

  Which is not a valid name for a method or function

Which is not a valid name for a method or function? Which of the following is a valid overloaded version of this method

  Implement the guess the word

Implement  the ‘Guess the Word' game in an object-oriented manner

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd