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.
1
Expert's answer
2021-09-30T14:44:22-0400
read name
read grade
if (grade >= 75)
remark = "passed"
else
remark = "failed"
print name
print grade
print remark
Comments
Leave a comment