0% found this document useful (0 votes)
16 views1 page

You Can Assume User Will Only Enter The ASCII Equivalents of Numbers or Characters From A' To H' or A' To H"

The document describes an algorithm that continuously takes double digit numeric user input, converts each input to its ASCII character equivalent, and displays the character without displaying the original input. This process repeats until the user enters a period, at which point the program terminates. Each user entry and output character are displayed on separate lines.

Uploaded by

sachnish123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views1 page

You Can Assume User Will Only Enter The ASCII Equivalents of Numbers or Characters From A' To H' or A' To H"

The document describes an algorithm that continuously takes double digit numeric user input, converts each input to its ASCII character equivalent, and displays the character without displaying the original input. This process repeats until the user enters a period, at which point the program terminates. Each user entry and output character are displayed on separate lines.

Uploaded by

sachnish123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Write an ALP that will continuously take in a double digit number and display the ascii character equal

to it. The input given by the user should not be displayed only the ASCII values must be displayed. This
program must run until the user presses ‘.’ which should not be displayed.

Each user entry must be in the next line

For e.g. if the user input is

‘67’

The ALP should display

‘g’

If the user enters ‘41’ next

The ALP should display ‘A’

If the user enters ‘32’ next

The ALP should display ‘2’

This should continue until user presses ‘.’ key

You can assume user will only enter the ASCII Equivalents of numbers or characters from ‘a’ to ‘h’
or ‘A’ to ‘H”

You might also like