-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab4b.py
46 lines (32 loc) · 933 Bytes
/
lab4b.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
def bubblesort(elm, tamanho):
for i in range(tamanho):
for j in range(tamanho-1):
if elm[j] > elm[j+1]:
t = elm[j]
elm[j] = elm[j+1]
elm[j+1] = t
return elm
def mediana(vetor, n):
if n%2 == 0:
a = vetor[n//2]
b = vetor[(n//2)-1]
med = (a+b)/2
else:
med = vetor[n//2]
return med
a = []
t = 0
tamanho = 0
while t != 11:
print("Adicione um numero:")
t = float(input("(Digite 11 para encerrar)"))
if (t >= 0) and (t <= 10):
tamanho += 1
a.insert(int(tamanho)-1, t)
elif t != 11:
print("\nNumero invalido! Somente permitido numeros entre 0 e 10!\n")
print("\nVetor digitado: ", a)
a = bubblesort(a,int(tamanho))
print("\nSequencia ordenada: ", a)
m = mediana(a, int(tamanho))
print("\nMediana: ", m)