Create a pseudocode 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-20T00:11:59-0400
Begin
Read A,B
if A > B:
Display A Higher
else:
Display B Higher
End
Comments
Leave a comment