对于一个作业,我需要使用一个名为 car 的类并让它显示品牌和型号,并且当你使用加速时速度增加 5,当你刹车时速度减少 5。我的老师一路帮助我,但当我走到尽头时,我无法让它运行。有人可以纠正我并告诉我为什么错了吗?
小鬼---------
#include <iostream>
#include <string>
using namespace std;
void accelerate()
{
int speed;
speed = speed + 5;
}
void brake()
{
int speed;
speed = speed - 5;
}
标题
#include <iostream>
#include <string>
using namespace std;
class car
{
public:
car(int getYear, string getMake);
void accelerate();
void brake();
private:
int year;
string make;
int speed;
};
汽车类.cpp
#include <string>
#include "CarClass.h"
using namespace std;
int main()
{
car.(2013,"Kia")
car.accelerate()
car.brake()
}