2022-04-28 14:40:33 +02:00

23 lines
735 B
Python

# Make a programm which asks the user for an input and then sorts the input of the user
# First ask the user how long he want the Array to be
array_length=int(input("Wie viele Zahlen sollen sortiert werden"))
# Second make an array
array=[]
# Third ask the user for number input
for i in range(array_length):
number=float(input("Bitte mir einfach eine Zahl geben"))
# Now append that number to the array
array.append(number)
# Now sort them with the Help of the selection sort algorithm
for i in range(len(array)):
min_= i
for j in range(i+1, len(array)):
if array[min_] > array[j]:
min_ = j
#swap
array[i], array[min_] = array[min_], array[i]
# main
for i in range(len(array)):
print(array[i])