akosiraff

Download CarProject CPP

Dec 4th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/carproject-cpp/
  3. Write a class named Car that has the following member variables:
  4. yearModel. An int that holds the cars year model.
  5. make. A string that holds the make of the car.
  6. Speed. An int that holds the cars current speed.
  7. In addition, the class should have the following constructor and other member functions:
  8. Constructor. The constructor should accept the cars year model and make as arguments. Thesew values should be assigned to the object’s yearModel and make member variables.
  9. Accessor. Appropriate accessor functions to get the values stored in an object’s yearModel, make, and speed member variables.
  10. accelerate.The accelerate function should add 5 to the speed member variable each time it is called.
  11. brake. The brake function should subtract 5 from the speed member variable each time it is called.
  12. Demonstrate the class in a program that creates a Car object, and then calls the brake function five times. After each call to the brake function, get the current speed of the car and display it.
  13. Download: http://solutionzip.com/downloads/carproject-cpp/
Add Comment
Please, Sign In to add comment