-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDizilerRastgeleElemanAtama.fprg
24 lines (24 loc) · 1.33 KB
/
DizilerRastgeleElemanAtama.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
<?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 03:56:58 ÖÖ"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAzOjU0OjEzIMOWw5Y7Mjg4MQ=="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAzOjU0OjE2IMOWw5Y7MTt2ZXlzZWw7VkVZU0VMLVBDOzIwMjQtMDgtMDY7MDM6NDQ6Mzkgw5bDljtEaXppbGVyR2lyacWfLmZwcmc7Nzk0NA=="/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzAzOjU2OjU4IMOWw5Y7MzszMDAy"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="sayac, elemansayisi" type="Integer" array="False" size=""/>
<output expression=""dizinin eleman sayısını giriniz"" newline="True"/>
<input variable="elemansayisi"/>
<declare name="sayilar" type="Integer" array="True" size="elemansayisi"/>
<for variable="sayac" start="0" end="elemansayisi-1" direction="inc" step="1">
<assign variable="sayilar[sayac]" expression="random(100)+1"/>
</for>
</body>
</function>
</flowgorithm>