/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
english/basic_content/const/class_const/first_example/apple.cpp
12 строк
208 B
xliu79
english
18 июл 2020, 12:09
18 июл 2020, 12:09
31c5da6
Код
Авторство
О чём код?
class Apple { private: int people[100]; public: Apple(int i); const int apple_number; void take(int num) const; int add(int num); int add(int num) const; int getCount() const; };