Computer Science, asked by amishafilomeena1003, 6 months ago

please answer this question in IDLE​

Attachments:

Answers

Answered by gaganadithyareddy9
1

Answer:

HELLO HERE IS YOUR ANSWER.

Works in python...

n = float(input("Enter a percentage: "))

if n>90:

print('You got A1 grade')

elif n>80 and n<89.9:

print('You got A2 grade')

elif n>70 and n<79.9:

print('You got B1 grade')

else:

print('You got B2 grade')

Similar questions