How to resolve the algorithm Create a two-dimensional array at runtime step by step in the APL programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Create a two-dimensional array at runtime step by step in the APL programming language
Table of Contents
Problem Statement
Get two integers from the user, then create a two-dimensional array where the two dimensions have the sizes given by those numbers, and which can be accessed in the most natural way possible. Write some element of that array, and then output that element. Finally destroy the array if not done by the language itself.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Create a two-dimensional array at runtime step by step in the APL programming language
Source code in the apl programming language
array←m n ⍴ 0 ⍝ array of zeros with shape of m by n.
array[1;1]←73 ⍝ assign a value to location 1;1.
array[1;1] ⍝ read the value back out
⎕ex 'array' ⍝ erase the array
You may also check:How to resolve the algorithm String interpolation (included) step by step in the Coco programming language
You may also check:How to resolve the algorithm Loops/Break step by step in the Octave programming language
You may also check:How to resolve the algorithm Verify distribution uniformity/Naive step by step in the Fortran programming language
You may also check:How to resolve the algorithm Currying step by step in the Perl programming language
You may also check:How to resolve the algorithm Generate lower case ASCII alphabet step by step in the Brainf*** programming language