-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinteger array 1 to 9 -17.fprg
More file actions
28 lines (28 loc) · 1.4 KB
/
integer array 1 to 9 -17.fprg
File metadata and controls
28 lines (28 loc) · 1.4 KB
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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="lalit"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-12-09 10:44:31 AM"/>
<attribute name="created" value="bGFsaXQ7TEFMSVRIQTsyMDIyLTEyLTA2OzAyOjM2OjE2IFBNOzIzMjI="/>
<attribute name="edited" value="bGFsaXQ7TEFMSVRIQTsyMDIyLTEyLTA2OzAyOjQ4OjQwIFBNOzI7MjQzMQ=="/>
<attribute name="edited" value="SkVFU0hJVEhBO0RFU0tUT1AtSTQzVlROVjsyMDIyLTEyLTA5OzEwOjQ0OjMxIEFNOzU7MzEyNg=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="i" type="Integer" array="False" size=""/>
<declare name="a" type="Integer" array="True" size="10"/>
<assign variable="i" expression="0"/>
<for variable="i" start="0" end="9" direction="inc" step="1">
<input variable="a[i]"/>
</for>
<assign variable="i" expression="0"/>
<output expression=""the array is"" newline="True"/>
<for variable="i" start="0" end="9" direction="inc" step="1">
<output expression=""a"&"["& i &"]"&"="&a[i]" newline="True"/>
</for>
</body>
</function>
</flowgorithm>