This program will read in a group of 20 integers and then print
the numbers out in the order that they were entered.
This program will also ask for a value which the program 
will then search for.
It will also print out the numbers in either bubble sort or
straight selection sort.
Please enter an integer( enter -99 to stop) : 4
Please enter an integer( enter -99 to stop) : 6
Please enter an integer( enter -99 to stop) : 2
Please enter an integer( enter -99 to stop) : -99
4
6
2
Do you want to search for a value? ( Y or N )
n
Do you want to use bubble selection sort?
( Say 'Y' for Bubble )
( If you want to use straight selection sort type 'N' )
y
2
4
6
