Question: Please write a program in Marie simulator that does 1+2+3+4+5+6+7+8+9. The following code is for reference and does the same addition. int sum = 0;
Please write a program in Marie simulator that does 1+2+3+4+5+6+7+8+9. The following code is for reference and does the same addition.
int sum = 0;
for (int i = 0; i < 10; i++) {
sum = sum + i;
}
the following code can be used to initialize the variables sum, i, one, and ten, in which sum is initialized to 0, i is 0, one is 1 and ten is initialized to 10.
sum, DEC 0 / initial value of sum, i.e. 0, used to save result
i, DEC 0 /used for loop counter
one, DEC 1 /used for counter, subtract one after each loop
ten, DEC 10 / because we will repeatedly add 10 times
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
