-
Notifications
You must be signed in to change notification settings - Fork 0
/
39-Fonksiyonlar Yardımıyla 3'Lü Toplama Bloğu Programı.fprg
44 lines (44 loc) · 2.71 KB
/
39-Fonksiyonlar Yardımıyla 3'Lü Toplama Bloğu Programı.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
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="husey"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2023-09-06 03:01:33 ÖS"/>
<attribute name="created" value="aHVzZXk7SMWhU0VZSU47MjAyMy0wOS0wNjswMjo1MzozOCDDllM7MjgwMg=="/>
<attribute name="edited" value="aHVzZXk7SMWhU0VZSU47MjAyMy0wOS0wNjswMzowMTozMyDDllM7MTsyODk5"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="katbirsay1, katbirsay2, katikisay1, katikisay2, katucsay1, katucsay2, toplam" type="Integer" array="False" size=""/>
<output expression=""Lütfen 1.Toplam Bölümü 1.Sayıyı Giriniz: "" newline="True"/>
<input variable="katbirsay1"/>
<output expression=""Lütfen 1.Toplam Bölümü 2.Sayıyı Giriniz: "" newline="True"/>
<input variable="katbirsay2"/>
<output expression=""Lütfen 2.Toplam Bölümü 1.Sayıyı Giriniz: "" newline="True"/>
<input variable="katikisay1"/>
<output expression=""Lütfen 2.Toplam Bölümü 2.Sayıyı Giriniz: "" newline="True"/>
<input variable="katikisay2"/>
<output expression=""Lütfen 3.Toplam Bölümü 1.Sayıyı Giriniz: "" newline="True"/>
<input variable="katucsay1"/>
<output expression=""Lütfen 3.Toplam Bölümü 2.Sayıyı Giriniz: "" newline="True"/>
<input variable="katucsay2"/>
<assign variable="toplam" expression="fonktoplam(katbirsay1, katbirsay2) + fonktoplam(katikisay1, katikisay2) + fonktoplam(katucsay1, katucsay2)"/>
<output expression=""Girmiş olduğunuz parametrelerden 3'lü toplama bloğuna göre toplam halleri: " & toplam" newline="True"/>
</body>
</function>
<function name="fonktoplam" type="Integer" variable="toplama">
<parameters>
<parameter name="say1" type="Integer" array="False"/>
<parameter name="say2" type="Integer" array="False"/>
</parameters>
<body>
<declare name="i, toplama" type="Integer" array="False" size=""/>
<assign variable="toplama" expression="0"/>
<for variable="i" start="say1" end="say2" direction="inc" step="1">
<assign variable="toplama" expression="toplama + i"/>
</for>
</body>
</function>
</flowgorithm>