-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLAB4.H8.fprg
24 lines (24 loc) · 1.02 KB
/
LAB4.H8.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="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="KARADAĞ"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2023-11-05 01:38:09 ÖS"/>
<attribute name="created" value="S0FSQURBxJ47S0FSQURBRzsyMDIzLTExLTA1OzAxOjA3OjAxIMOWUzsyNjA0"/>
<attribute name="edited" value="S0FSQURBxJ47S0FSQURBRzsyMDIzLTExLTA1OzAxOjM4OjA5IMOWUzsxOzI3MjQ="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="a, t" type="Integer" array="False" size=""/>
<assign variable="a" expression="3"/>
<assign variable="t" expression="0"/>
<while expression="a<=9">
<assign variable="t" expression="t+a"/>
<assign variable="a" expression="a+1"/>
</while>
<output expression="t" newline="True"/>
</body>
</function>
</flowgorithm>