.Create a pseudocode and flowchart that will input values for A and B. Compare two values inputted and print which of the values is higher including the remark “Higher”.
1
Expert's answer
2021-09-19T11:32:08-0400
Pseudocode
read A,B
if A > B:
print A Higher
else:
print B Higher
Comments
Leave a comment