Ask Question
9 August, 20:31

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

+5
Answers (1)
  1. 9 August, 23:47
    0
    Switch the numbers around ...
Know the Answer?
Not Sure About the Answer?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers