170k views
5 votes
LAB: Utility Function: Displaying an Array (LAT-C)

When we decide on a Function we want to write, we would like to be able to reuse that Function in future programs. Thus, we want the Function to do one thing and only one thing, and to do that one thing well. We would like the thing the Function does to be something we will likely need in the future, so we can reuse the code and don't have to keep rewriting similar code.

In this LAB, you will write a Utility Function named DisplayArrayOfIntegers that displays the contents of an Array of integers which is passed as an argument to the Function.

In this LAB, the Array will be an integer array. We would have to write another (very similar function) if we wanted to have a Function that displays the values in an array with floating points.

The Function header will be:

Function DisplayArrayOfIntegers(integer array(?) userVals) returns nothing
Even though the function header shows a variable sized array with a array(?), the array that is passed to the function will have a length. The variable userVals.size will be the length of the array.

The Main() function is given to you. The Main() function you are given reads in a length of an array followed by the contents of the array from input, and then calls the function you are to write.

Important:

Do NOT modify or write any code other than in Function DisplayArrayOfIntegers().

Do NOT Put any information to output in any other part of the program other than Function DisplayArrayOfIntegers()

Do NOT read any input in Function DisplayArrayOfIntegers()

The one purpose of DisplayArrayOfIntegers() is to display the elements in an array of integers.

For example, if the input is:

5 1 2 3 4 5
The function you write should put the following to output:

1 2 3 4 5

User Guli
by
7.3k points

1 Answer

4 votes

Final answer:

The subject of this question is Computers and Technology at a High School level. The student is asked to write a utility function named DisplayArrayOfIntegers that displays the contents of an array of integers. The function takes the array as an argument and returns nothing.

Step-by-step explanation:

The subject of this question is Computers and Technology at a High School level. The student is asked to write a utility function named DisplayArrayOfIntegers that displays the contents of an array of integers. The function takes the array as an argument and returns nothing. The main purpose of the function is to display the elements in the array.

User Regene
by
8.6k points