Bubble Sort

Bubble sort is a sorting algorithm that will sort an array of numbers.

Input five numbers ranging from 1 to 100 in random order:


First, it will compaire the value of the first two numbers in the array. If the number at [1] is less than the number at [0], the numbers will swap, moving the lower number to the left.