#This program will determine students if they are
#eligible for an additional exam
#(total_exam = value1 module_exam=value2)
#Determining the maximum values of marks for exams
#(user_total user_module)
# print prompt "Input your results exam"
# Get the final module mark from the user
# Get the exam mark from the user
# (P1:user_exam>module_exam 30%)
# Checking the assumption P1 that the user's score for the exam
# is more than 30% acceptable values
# if P1 True then
# (P2:user_total<total_exam 50%)
# Checking the assumption P2 that the user's overall score for the exam
# is less than 50 acceptable values
# if P2 True then
# print(mesage)
# We display information about the possibility of a student
# to pass the exam again
Comments
Leave a comment