Write algorithm for the following :- to read marks and print grade 'A' if marks > 80 otherwise 'B' .
Answers
Answered by
43
Answer:
step 1:
start
step2:
Accept marks
step3:
if marks> 80
print grade A
else
print grade B
step 4:
display result
step 5:
stop
Answered by
21
Answer:
step 1- start
step 2-accept marks
step 3 if marks > 80 print grade B
step 4- display result
step - 5 stop
Similar questions