added descriptions

This commit is contained in:
Alexander Zhirov 2021-06-22 19:28:40 +03:00
parent c3e27642b2
commit e9026cb63d
1 changed files with 2 additions and 21 deletions

View File

@ -9,6 +9,8 @@ int Student::count = 0;
int main() int main()
{ {
// Exercise 1
Student students[] = Student students[] =
{ {
Student("Олег", 20, GENDER_MALE, 75.2, 2020), Student("Олег", 20, GENDER_MALE, 75.2, 2020),
@ -62,24 +64,3 @@ int main()
return 0; return 0;
} }