-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLAB4,H19.fprg
24 lines (24 loc) · 1.01 KB
/
LAB4,H19.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-04 08:10:04 ÖS"/>
<attribute name="created" value="S0FSQURBxJ47S0FSQURBRzsyMDIzLTExLTA0OzA3OjU2OjQxIMOWUzsyNjE3"/>
<attribute name="edited" value="S0FSQURBxJ47S0FSQURBRzsyMDIzLTExLTA0OzA4OjEwOjA0IMOWUzsxOzI3MTU="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="n, a, t" type="Integer" array="False" size=""/>
<input variable="n"/>
<assign variable="a" expression="1"/>
<while expression="a<=10">
<assign variable="t" expression="n*a"/>
<output expression="t" newline="True"/>
<assign variable="a" expression="a+1"/>
</while>
</body>
</function>
</flowgorithm>