-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnb_mystere.py
16 lines (13 loc) · 1.15 KB
/
nb_mystere.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
tableau =[[]]*6
BIN = [0]*6
tableau[0] = [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63]
#il faut créer ici les autres tableaux (y en a 5 de plus, indicé de 0 à 5)
tableau[1] = [2, 3, 6, 7, 10, 11, 14, 15, 18, 19, 22, 23, 26, 27, 30, 31, 34, 35, 38, 39, 42, 43, 46, 47, 50, 51, 54, 55, 58, 59, 62, 63]
tableau[2] = [4, 5, 6, 7, 12, 13, 14, 15, 20, 21, 22, 23, 28, 29, 30, 31, 36, 37, 38, 39, 44, 45, 46, 47, 52, 53, 54, 55, 60, 61, 62, 63]
tableau[3] = [8, 9, 10, 11, 12, 13, 14, 15, 24, 25, 26, 27, 28, 29, 30, 31, 40, 41, 42, 43, 44, 45, 46, 47, 56, 57, 58, 59, 60, 61, 62, 63]
tableau[4] = [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]
tableau[5] = [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]
for i in range(6):
print("Le nombre mystère est-il dans cette liste ? \n",tableau[i])
BIN[i] = int(input("Entrez bit \n"))
print("Le nombre mystère est : ",32*BIN[5] + 16*BIN[4] + 8*BIN[3] + 4*BIN[2] + 2*BIN[1] + 1*BIN[0])