Define a string array that will hold ten strings


Problem

In this program you will write two functions. One function will locate and return the largest value in an integer array. The second function will loop through the integer array, check each value to see if it is even or odd and place the appropriate word in a corresponding string array. Finally, your program will loop through the two arrays, printing the integer value from the integer array followed by the string value from the string array in the same item position.

I. Define an integer array that will hold 10 integers. Initialize it with the following values: 56, 77, 23, 12, 88, 59, 97, 33, 38, 64.

II. Define a string array that will hold 10 strings.

III. Write a function, named findMax, that will accept two arguments and return an integer value. The first parameter is an integer array. The second parameter is the size or length of the integer array. Loop through the positions in the array, searching all items to find the largest value in the array. Return the array index of the largest value found.

IV. Write a function named, evenOrOdd, that will accept three parameters. The first parameter is the integer array used in the above function. The second parameter is the string array from step 2 and the third parameter is an integer indicating the size of the two arrays. This function will perform the following tasks:

i. This function will loop through the first array, checking each value to see if it is even or odd.

ii. For each item in the integer array, the function will then place the appropriate value, "even" or "odd", in the corresponding position of the string array.

iii. Hint: Using the modulus operator, (also called the modulo), to divide the number by 2 will result in either a remainder of 0 or 1. The remainder of 0 indicates an even number and a remainder of 1 indicates an odd number. The modulus operator for all of the languages in this class is %.

V. After calling both functions, print the maximum number determined by findMax as well as the array index position of the largest number. Next, the program will loop through the two arrays and print the integer from integer array followed by the corresponding "even" or "odd" value from the string array.

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Define a string array that will hold ten strings
Reference No:- TGS03343657

Expected delivery within 24 Hours