Write algorithm for the following:- (b) to read marks and print grade 'A' if marks > 80 otherwise 'B'.
Answers
Answered by
5
Answer:
Step1:Read a number and store it in the variable N
Step2: if N > 80 then
display A
else
display B
Explanation:
Similar questions