Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ (1)Fill & Output a two dimensional array to produce 4 x 5 multiplication table ( 4 rows, 5 columns, 1 being the smallest value).
C++
(1)Fill & Output a two dimensional array to produce 4 x 5 multiplication table ( 4 rows, 5 columns, 1 being the smallest value). Below is part of what the array would look like. Use tabs
1 2 3 4 5 2 4 6 ... 3 6 ... 4 ...
(2) Allow the computer to determine the largest value in the array
(3) Allow the user to input a value from the array and have the location output (if the number exists multiple times in the array, each location should be output.
(4) Subtract the max value from Numbers[2][3] (calculation using the location must exist in the program)
Example
The largest number in the array is: 20 Input a number: 2 Your number is at Numbers[0][1] The difference between the max value and Numbers[2][3] is:12
Step 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