We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f938c82 commit 4b0a45cCopy full SHA for 4b0a45c
grading_students.py
@@ -0,0 +1,5 @@
1
+#!/bin/python3
2
+grades = [int(input()) for p in range(int(input()))]
3
+[print(g+5 - g%5 if g%5 > 2 and g>37 else g) for g in grades]
4
+
5
0 commit comments