-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path(Bayrak Değişken) Girilen Sayı Asal Mı.fprg
36 lines (36 loc) · 1.7 KB
/
(Bayrak Değişken) Girilen Sayı Asal Mı.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
<?xml version="1.0"?>
<flowgorithm fileversion="2.11">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="LENOVO"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-01-09 10:59:41 ÖS"/>
<attribute name="created" value="TEVOT1ZPO0RFU0tUT1AtU0RQVFBRODsyMDIyLTAxLTA5OzEwOjQ4OjU4IMOWUzszMDA4"/>
<attribute name="edited" value="TEVOT1ZPO0RFU0tUT1AtU0RQVFBRODsyMDIyLTAxLTA5OzEwOjU5OjQxIMOWUzsyOzMxMTE="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayi, sayac, asalKontrol" type="Integer" array="False" size=""/>
<output expression=""Asal Olup Olmadığını Öğrenmek İstediğiniz Sayıyı Giriniz!!"" newline="True"/>
<input variable="sayi"/>
<assign variable="asalKontrol" expression="0"/>
<for variable="sayac" start="2" end="sayi / 2" direction="inc" step="1">
<if expression="sayi % sayac == 0">
<then>
<assign variable="asalKontrol" expression="1"/>
</then>
<else/>
</if>
</for>
<if expression="asalKontrol == 0">
<then>
<output expression=""Girdiğiniz Sayı Asaldır!!"" newline="True"/>
</then>
<else>
<output expression=""Girdiğiniz Sayı Asal Değildir!!"" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>