-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3e5e.fprg
27 lines (27 loc) · 1.17 KB
/
3e5e.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="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="veysel"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-06 01:56:04 ÖÖ"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAxOjUxOjE3IMOWw5Y7Mjg4MA=="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAxOjU2OjA0IMOWw5Y7MTsyOTg5"/>
</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<500">
<if expression="sayac%3=0 && sayac%5=0 && sayac%7=0">
<then>
<output expression=""bulunan sayi "&sayac" newline="True"/>
</then>
<else/>
</if>
<assign variable="sayac" expression="sayac+1"/>
</while>
</body>
</function>
</flowgorithm>