Diferència entre revisions de la pàgina «M3 - Programació estructurada / Exercicis UF1: Expressions lògiques»

De wikiserver
Dreceres ràpides: navegació, cerca
Línia 6: Línia 6:
 
a) x=1 y=1  
 
a) x=1 y=1  
 
b) x=1 y=2  
 
b) x=1 y=2  
c) x=2 y=1
+
c) x=2 y=1  
d) x=2 y=2
+
d) x=2 y=2  
e) x=0 y=0
+
e) x=0 y=0  
f) x=1 y=0
+
f) x=1 y=0  
 
</pre>
 
</pre>
<!--
+
 
 
<pre>
 
<pre>
 
a) x=1 y=1 False  
 
a) x=1 y=1 False  
Línia 20: Línia 20:
 
f) x=1 y=0 True
 
f) x=1 y=0 True
 
</pre>
 
</pre>
-->
+
<!-- -->
 
2. (((x>3)&&(x<6)) || !((y>3)&&(y<6)))
 
2. (((x>3)&&(x<6)) || !((y>3)&&(y<6)))
 
<pre>
 
<pre>

Revisió del 18:58, 1 oct 2020

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

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