-
To run the program you can download MARS
A program that accepts 2 arrays, each array should enter 10 different numbers from each other,And the next number should be greater than the previous number, a total of 20 numbers ,The program merges the arrays into one large array , Array sorted in descending order
Get_attay1: Enter 10 num to array_1 Smallest to greatest 1 3 5 7 9 11 12 13 14 15 Get_attay2: Enter 10 num to array_2 Smallest to greatest 1 2 3 4 5 6 7 8 9 10 Array 1: 1.3.5.7.9.11.12.13.14.15. Array 2: 1.2.3.4.5.6.7.8.9.10. New arr in base 10 : 15.14.13.12.11.10.9.9.8.7.7.6.5.5.4.3.3.2.1.1. -- program is finished running --