You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kenneth Bruen
4692b428f6
|
3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago | |
marire.cpp | 3 years ago |
README.md
CCIoT
Mărire
Problem
A menu is created through which:
- Create a list of students identified by (name, year, 10 courses and 10 grades for each student, and the average corresponding to each student).
- The list of students with all the data corresponding to each student is displayed.
- Calculate the general average of each student (display name and average).
- Students are displayed in descending order of average. Students with the same average are sorted alphabetically (display name + average + year).
- All students from year 3 are displayed who have an average over 8.00 (name + year + average).
- Insert a student's data (read from the keyboard) after the k-th(position in the list) student. If there are no k students it will be inserted at the beginning or at the end of the list (user choice).
- Remove all non-promoted students (average below 5.00) from the list.
- Exit
Solution
See marire.cpp.