M3 - Programació estructurada / Exercicis UF1: Expressions lògiques
De wikiserver
La revisió el 18:04, 30 set 2021 per Rsort (Discussió | contribucions)
Avalueu les següents condicions en funció dels valors corresponents de les variables
1. ((y<x) || ((y>1) && (x>1)))
a) x=1 y=1 b) x=1 y=2 c) x=2 y=1 d) x=2 y=2 e) x=0 y=0 f) x=1 y=0
a) x=1 y=1 False b) x=1 y=2 False c) x=2 y=1 True d) x=2 y=2 True e) x=0 y=0 False f) x=1 y=0 True
2. (((x>3)&&(x<6)) || !((y>3)&&(y<6)))
a) x=3 y=3 b) x=3 y=4 c) x=4 y=3 d) x=4 y=4
a) x=3 y=3 True b) x=3 y=4 False c) x=4 y=3 True d) x=4 y=4 True
3. (z>x && z>y || x>=y)
a) x=1 y=1 z=1 b) x=1 y=2 z=3 c) x=1 y=3 z=2 d) x=2 y=1 z=3 e) x=2 y=3 z=1 f) x=3 y=2 z=1 g) x=3 y=1 z=2
a) x=1 y=1 z=1 True b) x=1 y=2 z=3 True c) x=1 y=3 z=2 False d) x=2 y=1 z=3 True e) x=2 y=3 z=1 False f) x=3 y=2 z=1 True g) x=3 y=1 z=2 True