-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm_ganjil_genap.fprg
More file actions
27 lines (27 loc) · 1.22 KB
/
algorithm_ganjil_genap.fprg
File metadata and controls
27 lines (27 loc) · 1.22 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
25
26
27
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="HP"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2023-08-13 04:40:45 PM"/>
<attribute name="created" value="SFA7U0NJRUhBU0g7MjAyMy0wOC0xMzswNDoyNzo0MCBQTTsyMDE2"/>
<attribute name="edited" value="SFA7U0NJRUhBU0g7MjAyMy0wOC0xMzswNDo0MDo0NSBQTTsxOzIxMjQ="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="numinput" type="Integer" array="False" size=""/>
<output expression=""Ketik angka apapun sesuka hati anda, lalu tekan tombol Enter :"" newline="True"/>
<input variable="numinput"/>
<if expression="numinput mod 2 = 0">
<then>
<output expression=""Angka yang anda ketikkan adalah angka genap."" newline="True"/>
</then>
<else>
<output expression=""Angka yang anda ketikkan adalah angka ganjil."" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>