I'm desperately trying to figure out how to properly use setacc function,
and also how to reference the speed variable into setacc and setbrake functions. I'm not sure if I did it correctly
im so confused can you guys please help
ive read my CS book an insurmountable amount of times and it does not directly answer my question. I've been stuck on this for days. I get everything else, except that, and is there anyway I can clean up my first object parameters, or does it look about right
when compiling it gives me these errors:
G:\Program4.cpp In function `int main()':
45 G:\Program4.cpp `speed' undeclared (first use this function)
Write a class named Car that has the following member variables:
• year. An int that holds the car’s model year.
• make. A string that holds the make of the car.
• speed. An int that holds the car’s current speed.
In addition, the class should have the following member functions.
• Constructor. The constructor should accept the car’s year and make as arguments
and assign these values to the object’s year and make member variables. The constructor
should initialize the speed member variable to 0.
• Accessors. Appropriate accessor functions should be created to allow values to be
retrieved from an object’s year, make, and speed member variables.
• accelerate. The accelerate function should add 5 to the speed member variable
each time it is called.
• brake. The brake function should subtract 5 from the speed member variable each
time it is called.
Demonstrate the class in a program that creates a Car object, and then calls the accelerate
function five times. After each call to the accelerate function, get the current speed of the
car and display it. Then, call the brake function five times. After each call to the brake
function, get the current speed of the car and display it.
those were the directions and thats what im trying to do, but im having trouble using the two function i created, could anyone tell me exactly what i did wrong.