Determine the output of the following pseudocode: Declare Integer m,n For m =1 to 3 Display "outer loop" , m For n = 1 t
Posted: Fri May 20, 2022 1:16 pm
Determine the output of the following pseudocode:
Declare Integer m,n
For m =1 to 3
Display "outer loop" , m
For n = 1 to 2
Display
"inner loop", n
End For
End For
Declare Integer m,n
For m =1 to 3
Display "outer loop" , m
For n = 1 to 2
Display
"inner loop", n
End For
End For