-
Notifications
You must be signed in to change notification settings - Fork 1
/
mencari-keliling-balok.fprg
25 lines (25 loc) · 1.21 KB
/
mencari-keliling-balok.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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value="Mencari Keliling"/>
<attribute name="authors" value="Administrator"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-01-09 06:44:25 PM"/>
<attribute name="created" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyMy0xMi0xMjswNzo1Mjo0NSBQTTszNjQ4"/>
<attribute name="edited" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyNC0wMS0wOTswNjo0NDoyNSBQTTszOzM3NjE="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="p, l, t, hasil" type="Integer" array="False" size=""/>
<output expression=""Masukkan Panjang : "" newline="True"/>
<input variable="p"/>
<output expression=""Masukkan Lebar : "" newline="True"/>
<input variable="l"/>
<output expression=""Masukkan Tinggi : "" newline="True"/>
<input variable="t"/>
<assign variable="hasil" expression="4 * (p+l+t)"/>
<output expression="hasil" newline="True"/>
</body>
</function>
</flowgorithm>