-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLAB4.H3.fprg
27 lines (27 loc) · 1.11 KB
/
LAB4.H3.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
<?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-10-31 04:30:21 ÖS"/>
<attribute name="created" value="S0FSQURBxJ47S0FSQURBRzsyMDIzLTEwLTMxOzA0OjE5OjUxIMOWUzsyNjEz"/>
<attribute name="edited" value="S0FSQURBxJ47S0FSQURBRzsyMDIzLTEwLTMxOzA0OjMwOjIxIMOWUzsxOzI3MTE="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="N" type="Integer" array="False" size=""/>
<output expression=""Enter a number "" newline="True"/>
<input variable="N"/>
<if expression="N%2==0">
<then>
<output expression="" N is even "" newline="True"/>
</then>
<else>
<output expression=""N is odd "" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>