Assignment #1 - 88B

Assignment #1 - 88B


           A S S I G N M E N T  # 1                         Weight 10
           ------------------------                         Due 24 Sep 88



Write a Fortran77 program that prints your McGill Student ID like this:

8
 6
  1
   2
    3
     4
      5
       E
        R

(if your ID is 8612345ER  of course). It may seem stupid
for some of you but this assignment is really intended to introduce
you to MUSIC, the editor, control lines and technique for developing
programs.  The control lines you should use are

       /LOAD VSFORT                     These lines all start in
       /OPT SOURCE                      COLUMN 1
       C
       C   Your Name:
       C   Your Code: HD__
       C   YOUR MCGILL ID: 88______
       C   THE COURSE NUMBER: 308-208A SECTION 1 OR 2
       C   The Assignment Number: 1
       C

                 Your Program - starting in column 7

             END
       /DATA
       /ENDRUN


Once you have successfully run your program on the screen, use the
MUSIC RECORD feature to produce a printout.

        *GO
        /RECORD
        ASSIGN1         (If ASSIGN1 is the name of your file)

        *GO
        /RECORD OFF
        *GO
        /PRINT @REC.000 CC ROUTE(BH112)
        *GO
        /PURGE @REC.000
        *GO