Question: How do you create this program in c++ language using no global variables and get from a infile, data.txt? A two-dimensional 6 x 8 array
A two-dimensional 6 x 8 array containing integers will have data from an input file. The input file has integers separated by spaces; the values are arranged in row-order. This means you read the values into the first row, then read values into the second row, and so on.) After input is done, output the array in table form (6 rows, 8 columns). Output is to the screen Then do the following: (1) Get user input of a row index (0 to 5). Calculate the sum of the elements in that row, and output it with a label, for the user to see. (2) Get user input of a column index (0 to 7). Find the maximum value in the designated column, and output it with a label, for the user to see
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
