Write a C++ program that prompts the user to enter the dimensions of a 2D matrix (rows and columns) then dynamically create the 2D matrix and fill the matrix with random numbers between 13 and 29 inclusive. Write a user defined function named UpperHalf () which takes a two dimensional array A, with size N rows and M columns as arguments and prints the upper half of the array.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question
4. Write a C++ program that prompts the user to enter the dimensions of a 2D matrix (rows
and columns) then dynamically create the 2D matrix and fill the matrix with random
numbers between 13 and 29 inclusive.
Write a user defined function named UpperHalf () which takes a two dimensional array
A, with size N rows and M columns as arguments and prints the upper half of the array.
The function's prototype should look like this:
void UpperHalf(int**matrix, int rows, int columns)
Hint:
To generate a number between a and b inclusive use this equation:
a + rand ()%(b-a+1)
Remember to deallocate dynamically created memory.
Sample Run:
Enter the number of rows > 4
Enter the number of columns > 5
Original Array:
24
15
18
17
18
25
14
20
13
13
19 24
23
14
25
26
13
20
20
14
Upper Half:
24 15 18 17
13
13
18
20
13
25
14
26
20
14
Transcribed Image Text:4. Write a C++ program that prompts the user to enter the dimensions of a 2D matrix (rows and columns) then dynamically create the 2D matrix and fill the matrix with random numbers between 13 and 29 inclusive. Write a user defined function named UpperHalf () which takes a two dimensional array A, with size N rows and M columns as arguments and prints the upper half of the array. The function's prototype should look like this: void UpperHalf(int**matrix, int rows, int columns) Hint: To generate a number between a and b inclusive use this equation: a + rand ()%(b-a+1) Remember to deallocate dynamically created memory. Sample Run: Enter the number of rows > 4 Enter the number of columns > 5 Original Array: 24 15 18 17 18 25 14 20 13 13 19 24 23 14 25 26 13 20 20 14 Upper Half: 24 15 18 17 13 13 18 20 13 25 14 26 20 14
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Functions
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
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