Computer Science, asked by crazy789wadhwani777, 9 months ago

accept marks in computer application of 10 students one at a time and display the grades of each based on :


MARKS GRADE

above 90. A

70 - 89. B

60 - 69. C

below 50 D


PLEASE HELP ME I HAVE TO SUBMIT MY PROJECT TOMORROW if the answer will be best I will mark it as brainliest​

Answers

Answered by Swetha03K
1

for i in range(1,11):

        n=input("Enter student's name:")

        m=int(input("Enter marks of",n)

        if m>90:

               print("Grade : A")

        elif 70<=m<=89:

               print("Grade : B")

       elif 60<=m<=69:

              print("Grade : C")

      elif m<50:

             print("Grade : D")

Similar questions