Question: Here is my code: program bigNumber; #include ( stdlib . hhf ) static n : int 3 2 ; begin bigNumber; stdout.put (

Here is my code:
program bigNumber;
#include ("stdlib.hhf")
static
n : int32;
begin bigNumber;
stdout.put("Gimme a decimal value to use for n: ");
stdin.get(n);
mov(n, ECX);
outerLoop:
cmp(ECX,0);
jle endOuterLoop;
mov(ECX, EDX);
innerLoop:
cmp(EDX,0);
jle endInnerLoop;
stdout.puti32(ECX);
dec(EDX);
jmp innerLoop;
endInnerLoop:
dec(ECX);
jmp outerLoop;
endOuterLoop:
stdout.newln();
end bigNumber;
Feedback from the instructor: Your BigNumber Code Is Not Showing The Assigned Output Pattern.
Here is my code: program bigNumber; #include ( "

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!