-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiplicationtable.fprg
26 lines (26 loc) · 1.27 KB
/
multiplicationtable.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="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="cb.en.u4cys22004"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-12-02 10:10:46 AM"/>
<attribute name="created" value="Y2IuZW4udTRjeXMyMjAwNDsyMDIyMjNNQVlDMDA0MTsyMDIyLTEyLTAyOzA5OjQ5OjI5IEFNOzMzMTk="/>
<attribute name="edited" value="Y2IuZW4udTRjeXMyMjAwNDsyMDIyMjNNQVlDMDA0MTsyMDIyLTEyLTAyOzEwOjEwOjQ2IEFNOzQ7MzQwOQ=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="i, num, j" type="Integer" array="False" size=""/>
<comment text="initialising values"/>
<assign variable="num" expression="1"/>
<comment text="finding num of values 1-10"/>
<for variable="i" start="1" end="10" direction="inc" step="1">
<for variable="j" start="1" end="10" direction="inc" step="1">
<assign variable="num" expression="i*j"/>
<output expression="i& "*" &j &"=" &num" newline="True"/>
</for>
</for>
</body>
</function>
</flowgorithm>