You are on page 1of 4

EJERCICIOS

Sea:
a=10
b=12
c=13
d=10
((a>b) or (a<c)) and ((a==c) or (a>=b))

((a>=b) or (a<d)) and ((a>=d) and (c>d))

not (a==c) and (c>b)


1 >= 5 or 3 == 8 and 6 < 9 or 7 > 7

2 >= 2 or not 4 < 12 and 5 != 6 and 8 <=10

5 - 3^3 > 0 or 5 != 6 and not 7>=7

7 + 8 / 2 == 11 and (5<5 or 6>=6)

You might also like