-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path07_Entrenador.fprg
27 lines (27 loc) · 1.19 KB
/
07_Entrenador.fprg
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
<?xml version="1.0"?>
<flowgorithm fileversion="2.11">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="Luis Monge"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2019-09-22 12:34:20 PM"/>
<attribute name="created" value="THVpcyBNb25nZTtNSU5HOzIwMTktMDktMjI7MTI6MzA6NDcgUE07MjUzMg=="/>
<attribute name="edited" value="THVpcyBNb25nZTtNSU5HOzIwMTktMDktMjI7MTI6MzQ6MjAgUE07MzsyNjM3"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="dias" type="Integer" array="False" size=""/>
<output expression=""¿Cuantos dias entrenas?"" newline="True"/>
<input variable="dias"/>
<if expression="dias>6">
<then>
<output expression=""Te convertirás en el mejor peleador"" newline="True"/>
</then>
<else>
<output expression=""Mejor vete a jugar ping pong con tus amigos"" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>