Question: Write a program which asks the user for 9 integers representing the elements of a 3 by 3 matrix by rows, stores the numbers in a 2-dimensional C++ vector, prints the matrix in a pretty format, prints the transpose of the matrix in a pretty format, and prints the determinant of the matrix.
Repeat until end of file.
You need to implement this in C++ language. You need to provide the answer as soon as possible.