-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGirilen 10 Sayının Ortalaması.fprg
26 lines (26 loc) · 1.35 KB
/
Girilen 10 Sayının Ortalaması.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
<?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-27 12:57:56 ÖS"/>
<attribute name="created" value="TEVOT1ZPO0RFU0tUT1AtU0RQVFBRODsyMDIyLTAxLTI3OzEyOjUyOjI3IMOWUzszMDAx"/>
<attribute name="edited" value="TEVOT1ZPO0RFU0tUT1AtU0RQVFBRODsyMDIyLTAxLTI3OzEyOjU3OjU2IMOWUzszOzMxMTg="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayi, toplam, i" type="Integer" array="False" size=""/>
<declare name="ortalama" type="Real" array="False" size=""/>
<assign variable="toplam" expression="0"/>
<for variable="i" start="1" end="10" direction="inc" step="1">
<output expression="i & ". Sayıyı Giriniz!"" newline="True"/>
<input variable="sayi"/>
<assign variable="toplam" expression="toplam + sayi"/>
</for>
<assign variable="ortalama" expression="toplam / 10"/>
<output expression=""Girdiğiniz Sayıların Ortalaması = " & ortalama" newline="True"/>
</body>
</function>
</flowgorithm>