matrix = {{1,2},{4,5}} this in c++

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 8RQ
icon
Related questions
Question

matrix = {{1,2},{4,5}}

this in c++

// Matrix operations: give option to user to select which
operation to perform.
// 1 = doubleMatrix in which each element is
// 2 = square -> square each element of matrix
// 3 = multiply matrix with a constant. Get the constant as input
4
7
from user
// You don't need to change initial values in myMatrix
// output matrix in correct shape:
//
8
9
10
11
// Sample run:
// Enter Operation: 3
// Enter constant: 2
// 2 4
// 8 10
12
13
14
15
16
Transcribed Image Text:// Matrix operations: give option to user to select which operation to perform. // 1 = doubleMatrix in which each element is // 2 = square -> square each element of matrix // 3 = multiply matrix with a constant. Get the constant as input 4 7 from user // You don't need to change initial values in myMatrix // output matrix in correct shape: // 8 9 10 11 // Sample run: // Enter Operation: 3 // Enter constant: 2 // 2 4 // 8 10 12 13 14 15 16
18
#include <iostream>
19
#include <vector>
auto doubleMatrix()
{
20
21
22
}
auto square()
{
23
24
25
26
}
auto multiplywithConst()
{
27
28
29
30
}
int main()
{
std::vector<std::vector<int>> myMatrix{{1, 2},{4, 5}};
31
32
33
34
35
36
}
Transcribed Image Text:18 #include <iostream> 19 #include <vector> auto doubleMatrix() { 20 21 22 } auto square() { 23 24 25 26 } auto multiplywithConst() { 27 28 29 30 } int main() { std::vector<std::vector<int>> myMatrix{{1, 2},{4, 5}}; 31 32 33 34 35 36 }
Expert Solution
steps

Step by step

Solved in 2 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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
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