wzyx
Объяснение:
print ("x y z w F")
for x in range (2):
for y in range (2):
for z in range(2):
for w in range(2):
if int((not(x == (not y)))or((x and w)==(z and not w)))==0:
print(x,y,z,w,int((not(x == (not y)))or((x and w)==(z and not w))))
Переменная 3 - y (последняя строка 1 0 1 1 0)
Переменная 2 - z (первая строка 0 1 1 0 0)
Переменная 1 - w (третья строка 1 0 1 0 0)
Переменная 4 - x
wzyx
Объяснение:
print ("x y z w F")
for x in range (2):
for y in range (2):
for z in range(2):
for w in range(2):
if int((not(x == (not y)))or((x and w)==(z and not w)))==0:
print(x,y,z,w,int((not(x == (not y)))or((x and w)==(z and not w))))
Переменная 3 - y (последняя строка 1 0 1 1 0)
Переменная 2 - z (первая строка 0 1 1 0 0)
Переменная 1 - w (третья строка 1 0 1 0 0)
Переменная 4 - x