Section 6.8 More encapsulation
To demonstrate encapsulation again, I’ll take the code from the previous section and wrap it up in a function:
void printMultTable() {
int i = 1;
while (i <= 6) {
printMultiples(i);
i = i + 1;
}
}
The process I am demonstrating is a common development plan. You develop code gradually by adding lines to
main
or someplace else, and then when you get it working, you extract it and wrap it up in a function.
The reason this is useful is that you sometimes don’t know when you start writing exactly how to divide the program into functions. This approach lets you design as you go along.
printMultTable
function. Run the active code to see what happens!You have attempted 1 of 2 activities on this page.