You are on page 1of 3

Keth Iralex Cabalda BES 043

COC-FA-BSCE2-04 Module #17

Multidimensional Arrays

Activity 1: What I Know Chart

1. How can an array be made Multidimensional?


- It can be termed as an array of arrays that stores homogeneous data in tabular form.

2. What can a Multidimensional Array contribute to programming?


- It is used to represent multiple data items of same type by using only single name.

Activity 3: Skill-building Activities


Trace the output of the program.

1.
#include<iostream>
#include<iomanip.h>
void main(void)
{
int rows = 3, columns = 4;
int numbers[3][4];
for(int i=0; i < rows; ++I)
{
for(int j=0; j < columns; ++j)
{
numbers[i][j] = (i+1) * (j+1);
cout << setw(5) << numbers[i][j];
}
cout << ‘\n’;
}
}

-1 2 3 4
2 4 6 8
3 6 9 12
Activity 5: Check for understanding,
trace each cout output :

#include<iostream>
#include<<iomanip>
void main(void)
{
int rows = 10, columns = 10;
int numbers[10][10], count =1;
for(int i = 0; i < rows; ++I){
for (int j=0; j < columns; ++j)
{
numbers[i][j] = count++;
cout << setw(5) << numbers[i][j];
}
cout << '\n';
}
}

- 1 2 3 4 5 6 7 8 9 10

11 12 13 14 15 16 17 18 19 20

21 22 23 24 25 26 27 28 29 30

31 32 33 34 35 36 37 38 39 40

41 42 43 44 45 46 47 48 49 50

51 52 53 54 55 56 57 58 59 60

61 62 63 64 65 66 67 68 69 70

71 72 73 74 75 76 77 78 79 80

81 82 83 84 85 86 87 88 89 90

91 92 93 94 95 96 97 98 99 100
Activity 6: Thinking about Learning

Three things you learned:


1. Write an program about multidimensional arrays.
2. I learned about multidimensional arrays
3. I learned how to trace programs with multidimensional arrays

Two things that you’d like to learn more about:


1. More about writing program that apply multidimensional arrays.
2. More examples in multidimensional arrays.

One question you still have:


1. How many dimensions can multidimensional arrays have?

You might also like