Java programing Assignment/Assembly language

profileGolf
HLA.docx

Create the following HLA Assembly program. I would recommend you create a new directory for This program.

PROGRAM 1: Favorite Color Write an HLA Assembly program that displays on screen in large letters your favorite color. There should be no input, only output. For example, I like blue best, so my output would look like this:

All this output should be generated by just five stdout.put statements.

PROGRAM 2: Square Table Write a program to produce a number table as described here. This table should be built from a single integer value provided by the user. The program will display a square 5X5 of various numbers.  The entered number should appear along the edge of the table.  Every other spot inside the box should also be filled with a number.  Those excess numbers should start with one bigger than the entered number and increment by one for every additional number used.

For example, the following output should be produced when the user inputs the starting value 15: 

Gimme a starting value:  15 15 15 15 15 15 15 16 17 18 15 15 19 20 21 15 15 22 23 24 15 15 15 15 15 15

 

And here is the output that would be produced when the user inputs the starting value 20:   

Gimme a starting value: 20 20 20 20 20 20    20 21 22 23 20 20 24 25 26 20   20 27 28 29 20 20 20 20 20 20

image1.emf