22 lines
502 B
Markdown
22 lines
502 B
Markdown
## Linux compilation
|
|
|
|
> mkdir build
|
|
> cd build
|
|
> cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
> make
|
|
|
|
## Exercise
|
|
|
|
Open project `students`:
|
|
|
|
* implement function `filterStudents`,
|
|
* Student should be disqualified whether his average is below `minAvergae`,
|
|
* Write an algorithm that prints students using ranges (do not implement friend operator<<)
|
|
|
|
Output:
|
|
|
|
```C++
|
|
Name: Jane | index: 743561 | average: 4.44
|
|
Name: Tom | index: 811111 | average: 4.36
|
|
Name: Mike | index: 811111 | average: 4.45
|
|
```
|