Download the attached CreateRandomNumbersFile.cpp file, open it in Dev C++, and then compile and run it. The program should generate a file called numbers_lastname.txt in the same folder as the program (replace lastname with your last name). Write a program that asks for the name of an input file. Then, read all the numbers in the file, and display the following information to the screen: count of numbers in the file sum of all numbers in the file average of all numbers in the file (to 2 decimal places) count of numbers in each range (100-199, 200-299, 300-399, etc.) The program should: display a hello message ask the user for an input file display the name of the input file validate the file opens correctly display statistical information as shown above display a goodbye message Submit the following back to this assignment (either individually or as a ZIP file): completed CPP file (not the EXE file) file of random numbers CreateRandomNumbersFile contains the following information: /* This program will ask the user for their last name, which will be used for* naming an output file. The output file will consist of 500-999 random* integers, all between 100-999.** COSC-1436 Fundamentals of Programming I* Author: Richard Herschede* Date: 7/23/2019*/ //LIBRARIES#include <iostream> //for input/output#include <string> //for string functions#include <fstream> //for files#include <cstdlib> //for rand() and srand()#include <ctime> //for system timeusing namespace std; //GLOBAL CONSTANTSconst int MAX_COUNT = 999; //maximum count of numbers to generateconst int MIN_COUNT = 500; //minimum count of numbers to generateconst int MAX_NUM = 999; //maximum value of random numberconst int MIN_NUM = 100; //minimum value of random number //MAIN FUNCTIONint main(){//hellocout << "This program will generate 500-999 random numbers, and write" << endl;cout << "them to a file. The user's last name will determine the name" << endl;cout << "of the output file. Each random number will be between 100-999." << endl << endl;//define local variablesofstream outfile; //output file streamstring username, //user's last namefilename = "numbers_"; //name of output fileint num, //variable to hold random numbercount; //variable to hold count of numbers//get system time and seed random number generatorunsigned seed = time(0);srand(seed);//set file name for output filecout << "Please enter your last name: ";getline(cin,username);filename += username + ".txt";//open the output file (will create new or overwrite existing)outfile.open(filename);//get count of random numbers to generatecount = (rand() % (MAX_COUNT - MIN_COUNT + 1)) + MIN_COUNT;cout << "Generating " << count << " random numbers to file " << filename << endl;//generate random numbers and write them to output filefor (int i = 0; i < count; i++){num = (rand() % (MAX_NUM - MIN_NUM + 1)) + MIN_NUM;outfile << num << " ";} //end for//close the output fileoutfile.close();//goodbyecout << "\nProgram complete. The output file, " << filename << ", is located" << endl;cout << "in the same directory as this program." << endl;return 0;} //end main()   Language is C++ Keep it in the most simplest form please.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter13: File Input And Output
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

Download the attached CreateRandomNumbersFile.cpp file, open it in Dev C++, and then compile and run it. The program should generate a file called numbers_lastname.txt in the same folder as the program (replace lastname with your last name).

Write a program that asks for the name of an input file. Then, read all the numbers in the file, and display the following information to the screen:

  • count of numbers in the file
  • sum of all numbers in the file
  • average of all numbers in the file (to 2 decimal places)
  • count of numbers in each range (100-199, 200-299, 300-399, etc.)

The program should:

  • display a hello message
  • ask the user for an input file
  • display the name of the input file
  • validate the file opens correctly
  • display statistical information as shown above
  • display a goodbye message

Submit the following back to this assignment (either individually or as a ZIP file):

  • completed CPP file (not the EXE file)
  • file of random numbers

CreateRandomNumbersFile contains the following information:

/* This program will ask the user for their last name, which will be used for
* naming an output file. The output file will consist of 500-999 random
* integers, all between 100-999.
*
* COSC-1436 Fundamentals of Programming I
* Author: Richard Herschede
* Date: 7/23/2019
*/

//LIBRARIES
#include <iostream> //for input/output
#include <string> //for string functions
#include <fstream> //for files
#include <cstdlib> //for rand() and srand()
#include <ctime> //for system time
using namespace std;

//GLOBAL CONSTANTS
const int MAX_COUNT = 999; //maximum count of numbers to generate
const int MIN_COUNT = 500; //minimum count of numbers to generate
const int MAX_NUM = 999; //maximum value of random number
const int MIN_NUM = 100; //minimum value of random number

//MAIN FUNCTION
int main()
{
//hello
cout << "This program will generate 500-999 random numbers, and write" << endl;
cout << "them to a file. The user's last name will determine the name" << endl;
cout << "of the output file. Each random number will be between 100-999." << endl << endl;

//define local variables
ofstream outfile; //output file stream
string username, //user's last name
filename = "numbers_"; //name of output file
int num, //variable to hold random number
count; //variable to hold count of numbers

//get system time and seed random number generator
unsigned seed = time(0);
srand(seed);

//set file name for output file
cout << "Please enter your last name: ";
getline(cin,username);
filename += username + ".txt";

//open the output file (will create new or overwrite existing)
outfile.open(filename);

//get count of random numbers to generate
count = (rand() % (MAX_COUNT - MIN_COUNT + 1)) + MIN_COUNT;
cout << "Generating " << count << " random numbers to file " << filename << endl;

//generate random numbers and write them to output file
for (int i = 0; i < count; i++)
{
num = (rand() % (MAX_NUM - MIN_NUM + 1)) + MIN_NUM;
outfile << num << " ";
} //end for

//close the output file
outfile.close();

//goodbye
cout << "\nProgram complete. The output file, " << filename << ", is located" << endl;
cout << "in the same directory as this program." << endl;

return 0;
} //end main()

 

Language is C++

Keep it in the most simplest form please.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning