I have this problem that requires me to have an user input 6 numbers. Then cout these numbers of an array of size = 6 to print out as follow:
6 5 4
3 2 1
Then must cout its transpose and should look as follow:
6 3
5 2
4 1
I so far have first part done, but cant come up with correct coding for the transpose. Here is what I have so far
------------------------------------------------------
/* This program will take a matrix and make it a transpose matrix */