UMBC CMSC211

Project 2 Due: 31 October

Requirements Specfication

Write a program that:
  1. That sets up a structure that includes:
  2. Have an array of ten student entries.
  3. The user will enter in ten entries.
  4. After the tenth one is entered, print out all ten in columnar format.
  5. Print out the students who might be eligible to graduate because they have more than 120 credits.

Sample Data

Joe Snuffy 1980 68
Gus Oldman 1936 135
Sally Sophamore 1977 35
Sue Dollar 1978 44
Ima Genius 1990 110
Lefty Doughboy 1940 75
Attaboy Jones 1070 123
Tommy Toadsmith 1980 66
Bill Shakeastick 1935 23
Fasty Scholar 1983 117

Name the source code file: proj2.asm

Sample Output

  Suudents:
  Name             Birth Credits 
  Joe Snuffy       1980   68 
  Gus Oldman       1936  135 
  Sally Sophamore  1977   35 
  Sue Dollar       1978   44
  Ima Genius       1990  110 
  Lefty Doughboy   1940   75
  Attaboy Jones    1070  123
  Tommy Toadsmith  1980   66
  Bill Shakeastick 1935   23
  Fasty Scholar    1983  117

Possible graduates:
  Name             Birth Credits 
  Gus Oldman       1936  135 
  Attaboy Jones    1070  123
  

Submission

Email the source file (the .asm file) to the TA at dingli1@cs.umbc.edu.

Program Header Comment Block

Use the following comment block at the beginning of your source code:
;; Filename:       proj1.asm
;; Name:           Ima Student
;; SSAN:           6789  
;; Date:           3 Feb 2001
;; Course:         CMSC-211 
;; Description:    
;;     Analysis:   
;;       Input:
;;       Output:
;;       Formulas:
;;       Constraints:
;;       Assumpitons:
;;     Design:     (Your psuedocode goes here.  Must be detailed)
;; Notes:          (As needed, such has how to assemble.)


UMBC CMSC211 CSEE | CMSC211 | Lectures