Assembler language Programming(difficult)

来源:百度知道 编辑:UC知道 时间:2024/06/01 04:17:05
1.Produce a menu such as the one below (remember to keep to the specification).
MENU
[1] Enter String
[2] Display String
[3] Reverse String
[4] Display String without Vowels and Spaces
[5] Display String in Upper Case
[6] Caesar Cipher
[9] Quit
Choose an Option:

2.The first item on your assignment menu will be to allow the user to enter a string (maximum of 25
characters). If more than 25 characters are entered an appropriate error message should be displayed

and the user prompted again for a phrase. You should assume that the user will only enter letters
and spaces. After the option is executed the menu should be displayed again.
The second item on your menu is to display the string the user entered. After the option
is executed the menu should be displayed again.

3.The third item on the menu should display the string entered by the user in reverse. For example,
‘Hello World’ is pri

1.Produce a menu such as the one below (remember to keep to the specification).

NEEDS 30000 POINTS

2.The first item on your assignment menu will be to allow the user to enter a string (maximum of 25
characters). If more than 25 characters are entered an appropriate error message should be displayed

NEEDS 100000 POINTS

3.The third item on the menu should display the string entered by the user in reverse.

NEEDS 80000 POINTS

4.The fourth item on the menu requires you to display the string the user entered excluding spaces
and excluding vowels (a, e, i, o, u). For example, the world “hello” would be displayed as “hll”.
“students” would be displayed as “stdnts”.

NEEDS 180000 POINTS

5.The fifth item on the menu requires you to display the string with all the lower case letters
converted to upper case. All spaces should remain unchanged. There maybe capitals in the string to