-
Notifications
You must be signed in to change notification settings - Fork 0
/
PW-E8.py
73 lines (57 loc) · 1.36 KB
/
PW-E8.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
64
65
66
67
68
69
70
71
72
73
def succ(Z):
return Z+1
def pred(Z):
if Z>=1:
return Z-1
else:
return 0
"""
Sesion 8-E8: 8. Dado el siguiente programa while, calculense:
F(1)(x), F(2)(x,y), F(3)(x,y,z).
Ademas, construyase una secuencia de computacion con entrada (0,2,1)
begin
while (X1>X4) do
begin
X2:=X2+X2;
X4:=succ(X4);
end
X1:=X2;
while (X3!=0) do
begin
X1:=succ(X1);
X3:=pred(X3);
end
end
"""
def f(X1,X2,X3,X4):
while (X1>X4): # X4 vale 0
X2=X2+X2
X4=succ(X4)
X1=X2
while (X3!=0):
X1=succ(X1)
X3=pred(X3)
return X1
def f_1(X):
return print(pw(X,0,0,0))
def f_2(X,Y):
return print(pw(X,Y,0,0))
def f_3(X,Y,Z):
return print(pw(X,Y,Z,0))
# F(X)? 0. Con un argumento se ejecuta sólo el primer bucle, pues X3 es 0
print ("F(X)")
# Si te ayuda, puedes probar con distintos valores de X, cambiando en la siguiente instruccion la X por su valor f(X)
# F(X,Y)?
print ("F(X,Y)")
# Si te ayuda, puedes probar con distintos valores de X e Y, cambiando en la siguiente instruccion X e Y por su valor
f(X,Y)
# F(X,Y,Z)?
# Si te ayuda, puedes probar con distintos valores de X, Y y Z, cambiando en la siguiente instruccion X, Y y Z por su valor
f(X,Y,Z)
"""
Secuencia de computacion con entrada (0,2,1). Completa la secuencia
a0 (0,2,1,0)
A1 X1>X4
a1 (0,2,1,0)
.....
"""