Advertisement
VergeoPaw

Vergeo Valentino Gunawan 10K2

Sep 30th, 2021
718
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. nilai = int(input("Masukkan nilai : "))
  2.  
  3. if nilai >= 90 :
  4.     print("A")
  5. elif nilai >= 80 :
  6.     print("B")
  7. elif nilai >= 65 :
  8.     print("C")
  9. else :
  10.     print("D")
  11.  
  12. if nilai < 65 :
  13.     print("D")
  14. elif nilai < 80 :
  15.     print("C")
  16. elif nilai < 90 :
  17.     print("B") :
  18. else :
  19.     print("A")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement