QQ网名大全

问一道C++题:你有几家热狗店,定义一个HotDogStand的类,其中有一个成员变量表示热狗店的ID号……

你的类设计错了
应是:

class HotDogStand
{
public:
HotDogStand();
HotDogStand(int numberOfshopValue,int numberOfhotdogValue);
void JustSold();
void output();
static void sumOfhotdog();

private:
static int sum;
intnumberOfshopValue;
int numberOfhotdogValue;
};
希望对你有用!
佚名
2024-11-15 10:33:50
最佳回答
类似问题(10)