car.cpp
来自「Since the field of object oriented progr」· C++ 代码 · 共 23 行
CPP
23 行
// Chapter 7 - Program 5 - CAR.CPP
#include "car.h"
void car::initialize(int in_wheels, float in_weight, int people)
{
passenger_load = people;
wheels = in_wheels;
weight = in_weight;
}
int car::passengers(void)
{
return passenger_load;
}
// Result of execution
//
// (this file cannot be executed)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?