Let's get the maximum amount of value from this sequence of numbers: 60, 50, 95,80, 70 1. Algorithmic ideas: Compare arrays[i] with arrays[i + 1], if arrays[i] > arrays[i + 1] are exchanged. So continue until the last number, arrays[length - 1] is ...