UMBC CMSC104 CSEE | CMSC104 | Lectures

Project 3 DUE: 10 April

Requirements Specfication

Write one that has
  1. a for-loop that goes from 1 to 100 by 7
  2. a while-loop that goes from 100 to 8 by 3
  3. a do-while loop that goes from 19 to 75 by 9

Example Output

In the following example, the program displays what is in Blue.

1 8 15 22 29 36 43 50 57 64 71 78 85 92 99
100 97 94 91 88 85 82 79 76 73 70 67 64 61 58 55 52 49 46 43 40 37 34 31 28 25 22 19 16 13 10
19 28 37 46 55 64 73
    

Program Header Comment Block

Use the following comment block at the beginning of your source code:
/*
 * Filename:       first.asm
 * Name:           Ima Student
 * SSAN:           6789  
 * Date:           3 October 2000
 * Course:         CMSC-211 
 * Description:    (Your psuedocode goes here)
 * Notes:          (As needed, such has how to compile)
 */


UMBC CMSC104 CSEE | CMSC104 | Lectures