-
Notifications
You must be signed in to change notification settings - Fork 0
/
55-Armstrong Sayı Kontrolü Yapan Program.fprg
36 lines (36 loc) · 1.98 KB
/
55-Armstrong Sayı Kontrolü Yapan 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
<?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-20 05:16:30 ÖS"/>
<attribute name="created" value="aHVzZXk7SMWhU0VZSU47MjAyMy0wOS0yMDswNTowMzowOCDDllM7Mjc5Mw=="/>
<attribute name="edited" value="aHVzZXk7SMWhU0VZSU47MjAyMy0wOS0yMDswNToxNjozMCDDllM7MjsyOTAx"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayi, i, toplam, basamak" type="Integer" array="False" size=""/>
<declare name="str" type="String" array="False" size=""/>
<assign variable="str" expression=""""/>
<assign variable="toplam" expression="0"/>
<output expression=""Lütfen Armstrong Sayısı kontrolü yapacağınız sayıyı giriniz: "" newline="True"/>
<input variable="sayi"/>
<assign variable="str" expression="ToString(sayi)"/>
<for variable="i" start="0" end="Len(str) - 1" direction="inc" step="1">
<assign variable="basamak" expression="ToInteger(Char(str, i))"/>
<assign variable="toplam" expression="toplam + (basamak ^ Len(str))"/>
</for>
<output expression=""Armstrong toplam değeri: " & toplam" newline="True"/>
<if expression="toplam == sayi">
<then>
<output expression=""Girmiş olduğunuz sayı bir Armstrong sayısıdır."" newline="True"/>
</then>
<else>
<output expression=""Girmiş olduğunuz sayı bir Armstrong Sayısı değildir."" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>