CSC231 Homework 5 2017

From dftwiki3
Revision as of 07:13, 25 March 2017 by Thiebaut (talk | contribs) (Problem #1)
Jump to: navigation, search

--D. Thiebaut (talk) 08:12, 25 March 2017 (EDT)


Contents


This homework is due on 4/3/17, at 11:55 p.m.


Problem #1


Write an assembly language program that prompts the user for an integer, and prints out a pattern of stars representing a triangle, a square, and another triangle.

Here is an example where the user enters 5 when prompted by the program:

Hw5 1.png


Note that the output corresponds to 3 geometric patters: a triangle of 5 lines, a square of 5 lines, and another triangle of 5 lines. The width of the square and triangles is 5 star (max length of a line).
Hw5 1top.png Hw5 1middle.png Hw5 1bot.png