Question: Code this Pseudocode save your file as 2dimensionalArray your output should look like: Start Declarations Constant num WIDTH = 5 Constant num HEIGHT = 3
Code this Pseudocode save your file as 2dimensionalArray your output should look like: Start Declarations Constant num WIDTH = 5 Constant num HEIGHT = 3 Num areaArray [HEIGHT][WIDTH] Num n, m//loop counters for (n=0 to HEIGHT step 1) output n+1//output height for (m=0 to WIDTH step 1) areaArray[n][m]=(n+1)*(m+1)//calculate HEIGHT * WIDTH and store it in the array output areaArray[n][m] endfor endfor end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
