Van professionele vertalers, bedrijven, webpagina's en gratis beschikbare vertaalbronnen.
algorithmes
algorithm
Laatste Update: 2014-12-09
Gebruiksfrequentie: 9
Kwaliteit:
Gelieve het te verwijderen indien je dit meent.
algorithmes utilisÉs
algorithms used
Laatste Update: 2014-11-21
Gebruiksfrequentie: 1
Kwaliteit:
algorithmes d’ia
define a class student with attributes code, name, average, and ranking. function read_students_file(file_name): students = empty list open the file file_name in read mode for each line in the file: split the line into code, name, and average create a student object with the data add the student to the students list close the file return students function sort_and_rank_students(students): sort the students list in descending order based on average for each student in students, assign a ranking based on their position in the sorted list return the sorted students list function create_ranking_file(students, file_name): open the file file_name in write mode for each student in students: write the name, average, and ranking to the file separated by spaces close the file function create_mentions_file(students, file_name): open the file file_name in write mode for each student in students: calculate the mention based on the average (e.g., "honors" if average >= 14, else "pass") write the name, average, ranking, and mention to the file separated by spaces close the file start of the main program students = read_students_file("students.dat") sorted_students = sort_and_rank_students(students) create_ranking_file(sorted_students, "ranking.dat") create_mentions_file(sorted_students, "mentions.txt") end of the main program
Laatste Update: 2023-10-03
Gebruiksfrequentie: 1
Kwaliteit:
Waarschuwing: Bevat onzichtbare HTML-opmaak