can array[1:30]
be an one dimensional array
?
Also how do you print two arrays
next to each other? (in pseudocode)
PRINT array[1:30],arraytwo[1:30]
^is this ok?
can array[1:30]
be an one dimensional array
?
Also how do you print two arrays
next to each other? (in pseudocode)
PRINT array[1:30],arraytwo[1:30]
^is this ok?
If you use an already-defined syntax then follow its definition. Otherwise it's up to you:
Let "array" be one-dimensional array of 30 elements.
Let "arraytwo" be one-dimensional array of 30 elements.
Print "array" and "arraytwo" concatenated.
In fact, pseudocode is not for machines but for humans, so just make it understandable to humans.