RAMM Computer Exercises - Index Looping

# Problem Dscription Flowchart RAMM
Computer
RAMM
Assembler
1 Flowchart a procedure to read in and echo print 10 values and stop. Echo printing is printing immediately after the read is accomplished, similar to a voice echo. It is frequently used to ascertain whether the data being used is the data expected.
2 Flowchart a procedure to read 100 values, print only the positive values and then stop.
3 Flowchart a procedure to read a value h (number of hours worked) and a value r (hourly rate of pay), compute p (gross pay), and print hours, rate, and gross pay for each of 20 employees.
4 Flowchart a procedure to read in two values, a and b. Determine which value is larger (assume they are unequal) and print it. Repeat this for 5 sets of values and then stop.
5 Flowchart a procedure to read, echo print, and find and print the cumulative sum for 6 values.
6 Read a value a. Flowchart a procedure to read in 25 data values, to count the number of negative (less than zero) values which were read in, to print this count and stop.
7 Flowchart a procedure to read in 50 data values, to sum only those values which are positive (greater than zero) and to print this sum.