-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiagrama de flujo.fprg
More file actions
48 lines (48 loc) · 2.29 KB
/
Copy pathdiagrama de flujo.fprg
File metadata and controls
48 lines (48 loc) · 2.29 KB
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
<?xml version="1.0"?>
<flowgorithm fileversion="2.11">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="Victor Murcio"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-02-02 12:53:59 p. m."/>
<attribute name="created" value="VmljdG9yIE11cmNpbztMQVBUT1AtQVBKVk9PQkY7MjAyMi0wMS0yODswOTo1OToyNSBhLiBtLjszODU4"/>
<attribute name="edited" value="VmljdG9yIE11cmNpbztMQVBUT1AtQVBKVk9PQkY7MjAyMi0wMi0wMjsxMjo1Mzo1OSBwLiBtLjs1OzM5NzM="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="n" type="Integer" array="False" size=""/>
<for variable="n" start="0" end="30" direction="inc" step="1">
<declare name="TipodeBasura" type="Integer" array="False" size=""/>
<input variable="TipodeBasura"/>
<if expression="TipodeBasura ==1">
<then>
<output expression=""Bote verde"" newline="True"/>
</then>
<else>
<if expression="TipodeBasura == 2">
<then>
<output expression=""Bote Rojo"" newline="True"/>
</then>
<else>
<if expression="TipodeBasura == 3">
<then>
<output expression=""Bote Amarillo"" newline="True"/>
</then>
<else>
<if expression="TipodeBasura ==4">
<then>
<output expression=""Bote Azul"" newline="True"/>
</then>
<else/>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</for>
</body>
</function>
</flowgorithm>