-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0GireneKadarYazılanSayılarınToplamı.fprg
33 lines (33 loc) · 1.53 KB
/
0GireneKadarYazılanSayılarınToplamı.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
28
29
30
31
32
33
<?xml version="1.0"?>
<flowgorithm fileversion="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="BRIGHT"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-06 02:32:00 ÖÖ"/>
<attribute name="created" value="QlJJR0hUO0RFU0tUT1AtTEhWNUZKMjsyMDI0LTA4LTAzOzAyOjMyOjIxIMOWUzsyOTI1"/>
<attribute name="edited" value="QlJJR0hUO0RFU0tUT1AtTEhWNUZKMjsyMDI0LTA4LTAzOzAyOjQwOjM3IMOWUzsxOzMwMzk="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAyOjMyOjAwIMOWw5Y7MTsyOTgw"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayi, sayac, toplam" type="Integer" array="False" size=""/>
<assign variable="sayac" expression="1"/>
<assign variable="toplam" expression="0"/>
<do expression="sayac<>0">
<output expression=""Sayi Giriniz"" newline="True"/>
<input variable="sayi"/>
<if expression="sayi=0">
<then>
<assign variable="sayac" expression="0"/>
</then>
<else>
<assign variable="toplam" expression="toplam+sayi"/>
</else>
</if>
</do>
<output expression=""Girilen Sayilarin Toplami :" &toplam" newline="True"/>
</body>
</function>
</flowgorithm>