What it is role is in the overall program

Assignment Help Computer Engineering
Reference no: EM13322662

Improve the program's functionality by utilizing at least 5 of the concepts from the list below. Document how the game works, including how you utilized each of the chosen concepts and what it's role is in the overall program.

List of Concepts

1. Vectors with iterators

2. Do or while loops

3. Operator overloading

4. Pointers/references

5. The heap(objects with 'new')

6. Destructor overloading

7. Constructor overloading

8. Copy constructor overloading

9. STL algorithms (sort, shuffle, etc..)

10. Private/protected data members/functions

11. Block scope

12. Function overloading

13. Multidimensional arrays

14. Functions, parameters, return values

// Guess my number

// The classic number guessing game

#include <iostream>

#include <cstdlib>

#include <ctime>

using namespace std;

int main()

{

srand(static_cast<unsigned int>(time(0))); //seed random number generator

int secretNumber = rand() % 100 + 1; // random number between 1 and 100

int tries = 0;

int guess;

cout << "\tWelcome to Guess My Number\n\n";

do

{

cout << "Enter a guess: ";

cin >> guess;

++tries;

if (guess > secretNumber)

{

cout << "Too high!\n\n";

}

else if (guess < secretNumber)

{

cout << "Too low!\n\n";

}

else

{

cout << "\nThat's it! You got it in " << tries << "guesses!\n";

}

} while (guess != secretNumber);

return 0;

}

 

Reference no: EM13322662

Questions Cloud

What is the head loss due to friction per 1000 m of pipe : Water flows through a 250-mm diameter steel (C=120) pipe at a a velocity, V = 1.5 m/s. Using the Hazen-Williams equation, what is the head loss due to friction per 1000 m of pipe
What is the centerline uniform water depth in the channel : A 2-ft diameter circular pipe has a Manning's n of 0.013 and a bed slope of 2.0 X 10^-3. What is the uniform flow rate in this pipe if it is completely full (Qf) in ft^3/s
State what effect on the value of ca(oh)2''s ksp : What effect on the value of Ca(OH)2's Ksp (6.5x10^-6 ) would sucking up some suspended calcium hydroxide solid have. Would the Ksp value be higher or lower than the normal value. Why
Outline the major influences on business buyers : Outline the major influences on business buyers. Why is it important for the business-to-business buyer to understand these major influences?
What it is role is in the overall program : Improve the program's functionality by utilizing at least 5 of the concepts from the list below. Document how the game works, including how you utilized each of the chosen concepts and what it's role is in the overall program.
What is the laser beams electric field amplitude : A 150 MW laser pulse is focused with a lens to a diameter of 1.39 %u03BCm. What is the laser beam's electric field amplitude at the focal point
Determine the smallest allowable value of p of the tape : Knowing that the coefficents of friction between the tape and the drums are us=.40 and uk=0.30 and that drum C is free to rotate, determine the smallest allowable value of P if slipping of the tape on drum B is not to occur.
Any special ethical responsibilities : Do you think firms that market products for children have any special ethical responsibilities when they advertise? Why or why not? Give examples that support your position.
Determine amplification factor and magnitude of steady state : determine the amplification factor and the magnitude of steady state response (for deflection at A), when a horizontal force of 20Sin(8t) (N) is applied at B. (L= 250 mm, distance from center of mass to C = 40mm)

Reviews

Write a Review

Computer Engineering Questions & Answers

  Write java program that can serve as simple calculator

Write down a Java program that can serve as a simple calculator. This calculator keeps track of a single number (of type double) that is called result and that starts out as 0.0.

  What is the aim of a disaster recovery plan

What are the five methods of testing a DRP.What is the aim of a Disaster Recovery Plan.

  Icmp packets

Involve at least five ICMP packets, and also explain why they would be a problem on the network.

  Discuss and describe the potential security threats

Discuss and describe the potential security threats

  Providing access to the user

Explain the other questions you would ask? Will you think of any other ways to estimate this? How will you verify that the user requires this access?

  Arrays and control structures important tools in programming

Arrays and control structures important tools in programming.

  Define mitigation strategies to enable business continuity

It is estimated that three out of five businesses that experience downtime of 48 hours or more will be out of business within 3 years. Creating a technology risk mitigation and data protection plan requires people, method  and technology in the ri..

  How java programming knowledge benefits nonprogramming

How does information of programming concepts benefits individuals working in almost any IT position? Include at least one specific example of how java programming knowledge benefits nonprogramming working in IT?

  Transmitting message and tentative checkpoint

Is node P allowed to transmit the messages related to application (as opposed to message which is part of checkpoint algorithm itself) immediately after having taken a tentative checkpoint?

  How to maintain inventory data on resources stored

give an eLibrary system where patrons can search a database to retrieve either the location of an actual resource in the library or an electronic copy of the source.

  Simulating the turing machine

Describe how to simulate the Turing machine along with singly infinite tape on the Turing machine with the doubly infinite tape. (Be sure to handle the can't move left" special case.) Describe how to simulate the Turing machine with the doubly inf..

  Why recursion be considered a valuable technique

Why will recursion be considered a valuable technique.

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