Ask Question
16 July, 06:32

C++

Make a program that arranges the columns of a 2D-Array so that the elements of the first line are in ascending order using the insertion method.

Here is what i mean,

From this

-6 - 8 - 7

-9 - 5 - 3

2 0 4

To this

-8 - 7 - 6

-5 - 3 - 9

0 4 2

+2
Answers (1)
  1. 16 July, 09:22
    0
    Switch the numbers around ...
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “C++ Make a program that arranges the columns of a 2D-Array so that the elements of the first line are in ascending order using the ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers