fork download
  1. math.randomseed(os.time())
  2. grade = math.random(0, 100)
  3.  
  4. if grade >= 80 then do
  5. print("Your grade is "..grade.." You got an A")
  6. end
  7. elseif grade >= 70 then do
  8. print("Your grade is "..grade.." Nice boi you got a B")
  9. end
  10. elseif grade >=60 then do
  11. print("Your grade is "..grade.." You got a C not bad")
  12. end
  13. elseif grade >=50 then do
  14. print("Your grade is "..grade.." You barely passed bad job")
  15. end
  16. else
  17. print('Failed you monkey, your grade is '..grade)
  18. end
  19.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Your grade is 66 You got a C not bad