-
Notifications
You must be signed in to change notification settings - Fork 0
/
To make menu.fprg
45 lines (45 loc) · 2.09 KB
/
To make menu.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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-18 09:44:24 PM"/>
<attribute name="created" value="QWxvdWtpaztTVEFSVExFUjsyMDIyLTEyLTE4OzA4OjQ4OjA0IFBNOzI2MzE="/>
<attribute name="edited" value="QWxvdWtpaztTVEFSVExFUjsyMDIyLTEyLTE4OzA5OjQ0OjI0IFBNOzI7MjczOQ=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="i" type="Integer" array="False" size=""/>
<for variable="i" start="0" end="0" direction="inc" step="1">
<input variable="i"/>
<output expression=""Monday"" newline="True"/>
</for>
<for variable="i" start="1" end="1" direction="inc" step="1">
<input variable="i"/>
<output expression=""Tuesday"" newline="True"/>
</for>
<for variable="i" start="2" end="2" direction="inc" step="1">
<input variable="i"/>
<output expression=""Wednessday"" newline="True"/>
</for>
<for variable="i" start="3" end="3" direction="inc" step="1">
<input variable="i"/>
<output expression=""Thursday"" newline="True"/>
</for>
<for variable="i" start="4" end="4" direction="inc" step="1">
<input variable="i"/>
<output expression=""Friday"" newline="True"/>
</for>
<for variable="i" start="5" end="5" direction="inc" step="1">
<input variable="i"/>
<output expression=""Saturday"" newline="True"/>
</for>
<for variable="I" start="6" end="6" direction="inc" step="1">
<input variable="I"/>
<output expression=""Sunday"" newline="True"/>
</for>
</body>
</function>
</flowgorithm>