Write MARIE assembly to do this program, using iteration and if/then/else. You will use two data values, one called NUM, initialized to 4. And one call RELST, that stores the result of the calculation, initialized to zero. You will also need some other variables (your figure out). CTRL = 0 FOR I = 0 to 9 If CTRL == 0 RELST = RELST + NUM CTRL = CTRL + 1 ELSE RELST = RELST -1 CTRL = CTRL -1 “Play Computer” to execute your program virtually (logically on paper) to see what the correct answer should be.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.6: Nested Loops
Problem 4E
icon
Related questions
Question

Write MARIE assembly to do this program, using iteration and if/then/else. You will use two data values, one
called NUM, initialized to 4. And one call RELST, that stores the result of the calculation, initialized to zero.
You will also need some other variables (your figure out).
CTRL = 0
FOR I = 0 to 9
If CTRL == 0
RELST = RELST + NUM
CTRL = CTRL + 1
ELSE
RELST = RELST -1
CTRL = CTRL -1
“Play Computer” to execute your program virtually (logically on paper) to see what the correct answer should be. 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Fundamentals of Computer System
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr