👤

A Teacher would like to create a program that will classify if a student' s grade must be marked Passed or Failed. Any grades lower than 60 is considered failed. From this given information, please provide the necessary pseudocode.​

Sagot :

Answer:

You could try this on python (More like a bad coding but its working)

# is a Text-code

Explanation:

grade = 61 #Just put something in here

if grade > 60:

   print ("Failed")

elif grade < 60:

   print ("Passed")