Réalisées par des traducteurs professionnels, des entreprises, des pages web ou traductions disponibles gratuitement.
algorithmes
algorithm
Dernière mise à jour : 2014-12-09
Fréquence d'utilisation : 9
Qualité :
Avertissement : cet alignement peut être incorrect.
Veuillez le supprimer, au besoin.
algorithmes utilisÉs
algorithms used
Dernière mise à jour : 2014-11-21
Fréquence d'utilisation : 1
Qualité :
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
Dernière mise à jour : 2023-10-03
Fréquence d'utilisation : 1
Qualité :
Avertissement : un formatage HTML invisible est présent