Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 stumpedimage text in transcribedTranscribed:

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::cout

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Sql All In One For Dummies 7 Books In One

Authors: Allen G Taylor ,Richard Blum

4th Edition

1394242298, 978-1394242290

More Books

Students also viewed these Databases questions