-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsterisk Right Angled Triangle.fprg
More file actions
24 lines (24 loc) · 1.06 KB
/
Asterisk Right Angled Triangle.fprg
File metadata and controls
24 lines (24 loc) · 1.06 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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="Aloukik"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-12-27 11:45:07 PM"/>
<attribute name="created" value="QWxvdWtpaztTVEFSVExFUjsyMDIyLTEyLTE2OzA3OjM5OjIxIFBNOzI2Mjc="/>
<attribute name="edited" value="QWxvdWtpaztTVEFSVExFUjsyMDIyLTEyLTI3OzExOjQ1OjA3IFBNOzM7MjczNQ=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="i, j, n" type="Integer" array="False" size=""/>
<input variable="n"/>
<for variable="i" start="0" end="n-1" direction="inc" step="1">
<for variable="j" start="0" end="i" direction="inc" step="1">
<output expression=""*"" newline="False"/>
</for>
<output expression="" "" newline="True"/>
</for>
</body>
</function>
</flowgorithm>