HERES WHAT I NEED TO DO CAN YOU GUYS HELP ME... I DONT KNOW HOW TO START
Sort and print the array in the following fashion:
The odd numbers must go to the front of the array and the even numbers go to the end of the array.
Now sort the odd numbers in ascending order at the beginning of the array and sort the even numbers in descending order following the odd numbers.
If your description is talking about even and odd numbers, I'd assume they mean integers, not floats.
You might try making 2 additional arrays. Make one hold the even numbers, make the other hold the odd values. You'd go through the original list, get the even and odd numbers into the right array, then sort each array separately. Finally, rebuild the original array.