Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is to be written in C++. The arrays.txt file includes the follow, spaced out exactly like this: 40 1 30 4 52 26
This is to be written in C++. The arrays.txt file includes the follow, spaced out exactly like this:
"
40 1 30 4 52 26 7 18 9 10
"
Please read the instructions carefully and comment so I can follow along with your work.
Thank you and I will upvote who ever can follow the instructions best.
Program1 Write four functions to perform the following task:s ReadData; this function opens a file "arrays.txt" and reads its contents into 3 integer arrays named A, B and C. Each array holds 10 integers. The input file contains 3 lines; each line holds 10 integer values. So the data in the first line is used to initialize array A. The data in the second line is used to initialize array B. And the data in the third line is used to initialze array C. a. You may assume that "arrays.txt" has the following integers values 10 9 75 4 4 4 3 2 1 0 1 3456 7 8 9 10 0 1 3 45 7 10 11 12 13 b. PrintArrav: this function prints the elements of an array of any size. c. ReverseArray; this function reverses an array of any size in place d. LongestSequence: this function finds and returns the length of the longest consecutive sequence of numbers in an array of any size. You may assume that the array is sorted in ascending order. For example Longest sequence of 1,2,3,4,4,4,5,7,9,10) is 5. Note that repeated numbers in a sequence are skipped. Longest sequence of f0,1,3,4,5,6,7,8,9,10 is 8 Longest sequence of $0,1,3,4,5,7,10,11,12,13} is 4. Write a main program that Declares 3 arrays A, B, and C Calls the function readData to initialize these arrays Calls the function printArray three times to print the elements of arrays A, B, and Calls the function reverseArray and sends A as an argument Calls the function printArrav to print the elements of array A Calls the function longestSequence three times to find and return the longest sequence in all three arrays. The results should be printed in main Note: Any parameter that is not supposed to be changed inside a function must be declared as a constant parameterStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started