Construct a pseudocode and draw a flowchart that will input a grade of student and determine whether the grade is passed or failed(Passing grade is 60). Print the, grade and remark of student.
Mark=input(StudentMark)
if(Mark>60)
print("You passed! Your mark is ", Mark)
else
print("You did not pass. Your mark is", Mark)
Comments
Leave a comment