PERT 11 - Array 2 dimensi
PERT 11 - Array 2 dimensi
➢ Array_name = [rows][columns]
➢ Array_name = [ [m1, m 2 , m 3 , … . mn], [n1, n 2 , n 3 , … . . nn] ]
➢ mahasiswa = [ [82, 75, 67, 95, 70], [70, 97, 85, 79, 75], [86, 71, 80,
68,
• 93], [80, 73, 81, 94, 89], [57, 79, 86, 79, 80] ]
➢ print(mahasiswa[3]) ? ? ?
➢ print(mahasiswa[1][3]) ? ? ?
Show Output of Two Dimensional Array
Add Element to Two Dimensional Array
Change Element: Two Dimensional Array
Remove Element: Two Dimensional Array
Exercise Two Dimensional Array