-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathİkiSayiArasındakiRakamlar.fprg
35 lines (35 loc) · 1.6 KB
/
İkiSayiArasındakiRakamlar.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
<?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:00:28 ÖÖ"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzEyOjQ5OjEzIMOWw5Y7Mjg4NQ=="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAxOjAwOjI4IMOWw5Y7MTsyOTg0"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayi1, sayi2, sayac" type="Integer" array="False" size=""/>
<output expression=""Birinci sayiyi giriniz"" newline="True"/>
<input variable="sayi1"/>
<output expression=""ikinci sayiyi giriniz"" newline="True"/>
<input variable="sayi2"/>
<if expression="sayi1>sayi2">
<then>
<while expression="sayi2<sayi1-1">
<assign variable="sayi2" expression="sayi2+1"/>
<output expression=""Sayi :" &sayi2" newline="True"/>
</while>
</then>
<else>
<while expression="sayi1<sayi2-1">
<assign variable="sayi1" expression="sayi1+1"/>
<output expression=""Sayi :" &sayi1" newline="True"/>
</while>
</else>
</if>
</body>
</function>
</flowgorithm>