Download Arrays

February 16, 2018 | Author: Anonymous | Category: , Science, Health Science, Pediatrics
Share Embed


Short Description

Download Download Arrays...

Description

Arrays

Multi-dimensional initialize & display Sample programs Sorting Searching Part II

Multidimensional Arrays a

everything about one dimensional arrays applies *

a

all elements of the same data type

a

just need additional sets of [ ]

a

a 3-D array has rows, columns, and rank * Except leaving the size out of the formal parameter

Parallel Arrays Used when related data is of different data types. grade % of class A

28

B

40

C

29

D

9

F

14

parallel arrays = two or more arrays in which elements with corresponding indexes are related We WILL do this in the next lab *

Parallel Arrays for(row… for(col… { cout > id[row][col]; cout > grade[row][col]; } OR for(row… for(col… { }

cout > id[row][col] >> grade[row][col];

Sum a Row void main(void) { double nums [3][4] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}; double sumRow(double [3] [4]); // prototype

cout
View more...

Comments

Copyright © 2017 HUGEPDF Inc.