Write an algorithm that inputs marks and prints the message “PASS” or “FAIL.” Passing marks are 33.
Check if a student has passed or failed based on marks Problem Statement: Input a student’s marks and print “PASS” if the marks are greater than or equal to 33, otherwise print “FAIL”. Algorithm: Start Input the student’s marks (marks). If the marks are greater than or equal to 33, then: Print “PASS” Else: Print … Read more