-. Write a program to accept 5 subject marks and display the result of student.
p>=60
"FIRST"
P>=48 "SECOND"
P>=33 "THIRD"
"FAIL"
Answers
Answered by
1
Scores = [int(i) for i in input().split()]
for Score in Scores:
if Score >= 60:
print("FIRST")
elif Score >= 48:
print("SECOND")
elif Score >= 33:
print("THIRD")
else:
print("FAIL")
Note - The Code is in Python
Please Thank Me
And Mark this as Brainliest
Similar questions