Page 1 of 1

Convert the following pseudo-code into assembly language program: Initialize count to 0 Read a character WHILE character

Posted: Sat May 14, 2022 4:11 pm
by answerhappygod
Convert the following pseudo-code into assembly language
program:
Initialize count to 0
Read a character
WHILE character <> carriage return Do
IF (ā€˜A’ <= character) and (character <= ā€˜Z’)
THEN
count = count + 1
END_IF
Read a character
END_WHILE