Question
Short C++ program. Please write it. I've tried everything but I'm getting stumped Transcribed: Your program should take a single command line argument: the name
Short C++ program. Please write it. I've tried everything but I'm getting stumpedTranscribed:
Your program should take a single command line argument: the name of a file to read in
. a. This file needs to be stored in the same directory as your program. b. The file should store up to 100 integers on their own lines, with no other text. You can use the file named numbers.txt on Moodle, or create your own if you prefer c. If there is any error in opening the file then print the below statement std::cout
2. Create an array of integers to store at least 100 integers.
3. Write a function called insertIntoSortedArray. It should take three arguments - a sorted array of numbers at least 100 long, the actual number of filled entries in that array, and a new value to be added to that array. It should then insert the new value into the correct spot so that the array remains sorted. It should return the new size of the array. This function can be declared the following way:
4. Back in the main function, open the file that was passed via the command line and use the getline function to read the integers one by one. Store these integers in a sorted array by passing them to the insertIntoSortedArray function described above.
5. Each time a number is read in, print out the whole array separated by commas. For example if the file contained the numbers 1, 6, 2, 12, and 5 in that order, it should output:
Specinics: 1. Yaur program shauld take a single ommand line argumant: the name af a file to read in. a. This file needs to be stored in the arme directcry as your programi. b. The file should store up t0 100 integers on their own lines, with no other text. You can use the fie named numhers.tt on Mocdle, or create your can ycu prefer c. If there is any ernor i opering the file then print the belaw statermert std::coutStep 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