Question #243727

Write an algorithm that will input a grade of student and determine whether the grade is passed or failed. The passing grade is 75. Print the name, grade and remarks of student.

Expert's answer

read name
read grade
if (grade >= 75)
  remark = "passed"
else
  remark = "failed"
print name
print grade
print remark
LATEST TUTORIALS
APPROVED BY CLIENTS