Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.
algorithmes
algorithm
Ultimo aggiornamento 2014-12-09
Frequenza di utilizzo: 9
Qualità:
Attenzione: Questo allineamento potrebbe essere errato.
Eliminalo se ritieni che sia così.
algorithmes utilisÉs
algorithms used
Ultimo aggiornamento 2014-11-21
Frequenza di utilizzo: 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
Ultimo aggiornamento 2023-10-03
Frequenza di utilizzo: 1
Qualità:
Attenzione: contiene formattazione HTML nascosta