-
Notifications
You must be signed in to change notification settings - Fork 10
/
EstructuraIterativaDoWhile.fprg
24 lines (24 loc) · 1.09 KB
/
EstructuraIterativaDoWhile.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
<?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-10-02 05:01:07 PM"/>
<attribute name="created" value="THVpcyBNb25nZTtNSU5HOzIwMTktMTAtMDI7MDI6MjM6NTIgUE07MjUxOQ=="/>
<attribute name="edited" value="THVpcyBNb25nZTtNSU5HOzIwMTktMTAtMDI7MDU6MDE6MDcgUE07MzsyNjI4"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="contar" type="Integer" array="False" size=""/>
<assign variable="contar" expression="0"/>
<output expression=""Inicio el ciclo"" newline="True"/>
<do expression="contar<10">
<assign variable="contar" expression="contar+1"/>
<output expression="contar" newline="True"/>
</do>
<output expression=""Termino el ciclo"" newline="True"/>
</body>
</function>
</flowgorithm>