-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhileDongusu.fprg
23 lines (23 loc) · 1.03 KB
/
WhileDongusu.fprg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<flowgorithm fileversion="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="veysel"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-06 12:48:29 ÖÖ"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzEyOjIwOjU3IMOWw5Y7Mjg4Mg=="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzEyOjQ4OjI5IMOWw5Y7MjszMDAw"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayac" type="Integer" array="False" size=""/>
<assign variable="sayac" expression="1"/>
<while expression="sayac<=10">
<output expression=""Sayac:"&sayac" newline="True"/>
<assign variable="sayac" expression="sayac+1"/>
<breakpoint expression="sayac=4" always="False"/>
</while>
</body>
</function>
</flowgorithm>