Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in c++ Requirements: 1. [will be 0 if it does not compile or crash when it starts] The homework must be done in C++. Your

in c++

image text in transcribed

Requirements: 1. [will be 0 if it does not compile or crash when it starts]

The homework must be done in C++. Your code must work under Code::Blocks and GCC (or g++) compiler. 2. [5%]

The output average value should retain 4 decimal digits.

The program must use cin and cout to deal with command line input and output.

The program must ask user to input again without crashing if users input invalid file names.

The program must use arrays to solve the problem.

Students must implement loops by themselves to calculate the average and to find the largest value, invalid numbers, and number of rows.

There are invalid numbers (like 1P24) in the input data file, make sure those numbers will be recognized and abandoned automatically by your program without crashing.

1. Once it starts, it asks the user to type the input file name (a txt file). The print out information must be: Please input the filename: The program uses the file name to open the file. The file has a number of lines. Each line has two numbers separated by a comma. Therefore, there are actually two columns of numbers. For example: 2. 312312, 56877 2267, 3698 3, 3478 87907, 768 The program processes the input data to calculate the average value of all valid numbers in the first column and the largest value of all valid numbers in the second column. The print out should be The average value of all numbers in the first column: XXX.XXXX The largest value of all numbers in the second column: XxXXX The total number of rows in the file is: XXXX The invalid numbers are: XXX, XXX, XXX, 3

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

Database Systems On GPUs In Databases

Authors: Johns Paul ,Shengliang Lu ,Bingsheng He

1st Edition

1680838482, 978-1680838480

More Books

Students also viewed these Databases questions

Question

5. Describe the relationship between history and identity.

Answered: 1 week ago