mirror of
				https://github.com/dancojocaru2000/y3s2-cciot-hw.git
				synced 2025-11-04 07:56:32 +02:00 
			
		
		
		
	| .. | ||
| marire.cpp | ||
| 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.