-
Notifications
You must be signed in to change notification settings - Fork 1
/
gabungan-keliling-luas-volume.fprg
288 lines (288 loc) · 17.6 KB
/
gabungan-keliling-luas-volume.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="Administrator"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-01-14 10:11:15 PM"/>
<attribute name="created" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyMy0xMi0xMjswODoxMjozMiBQTTszNjQx"/>
<attribute name="edited" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyMy0xMi0xMjswODoyODoyMiBQTTsxO0FkbWluaXN0cmF0b3I7V0lOLTFPMUw3QTIzRU9WOzIwMjMtMTItMTI7MDg6MDE6NTAgUE07bWVuY2FyaS1sdWFzLWJhbG9rLmZwcmc7OTc3Mg=="/>
<attribute name="edited" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyMy0xMi0xMjswODoyOTowMCBQTTsxO0FkbWluaXN0cmF0b3I7V0lOLTFPMUw3QTIzRU9WOzIwMjMtMTItMTI7MDg6MTA6MTggUE07bWVuY2FyaS12YWxvbWUtYmFsb2suZnByZzs5OTgw"/>
<attribute name="edited" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyNC0wMS0wOTswOTowNDo1NSBQTTsyO0FkbWluaXN0cmF0b3I7V0lOLTFPMUw3QTIzRU9WOzIwMjMtMTItMTI7MDc6NTI6NDUgUE07bWVuY2FyaS1rZWxpbGluZy1iYWxvay5mcHJnOzEwMTk4"/>
<attribute name="edited" value="QWRtaW5pc3RyYXRvcjtXSU4tMU8xTDdBMjNFT1Y7MjAyNC0wMS0wOTswOTo1OToyNyBQTTs3OzM3NzY="/>
<attribute name="edited" value="UmVuZGk7UE9MQVJJUzsyMDI0LTAxLTE0OzEwOjExOjE1IFBNOzI2OzI0NjY="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="hasil, panjang, lebar, tinggi, luas, menu" type="Integer" array="False" size=""/>
<declare name="lanjut" type="String" array="False" size=""/>
<output expression=""PILIH MENU"" newline="True"/>
<output expression=""1. Hitung Keliling Permukaan Balok"" newline="True"/>
<output expression=""2. Hitung Luas Permukaan Balok"" newline="True"/>
<output expression=""3. Hitung Volume Balok"" newline="True"/>
<output expression=""4. Mencari Panjang Dari Bangun Persegi Panjang Jika Diketahui Luas dan Lebarnya"" newline="True"/>
<output expression=""5. Mencari Luas Persegi Panjang"" newline="True"/>
<output expression=""6. Mencari Keliling Persegi Panjang"" newline="True"/>
<output expression=""7. Mencari Diagonal Ruang Balok"" newline="True"/>
<input variable="menu"/>
<if expression="menu == 1">
<then>
<output expression=""Masukan Panjang Balok: ... cm"" newline="True"/>
<input variable="panjang"/>
<output expression=""Masukan Lebar Balok: ... cm"" newline="True"/>
<input variable="lebar"/>
<output expression=""Masukan Tinggi Balok: ... cm"" newline="True"/>
<input variable="tinggi"/>
<call expression="kelilingbalok(panjang, lebar, tinggi)"/>
</then>
<else>
<if expression="menu == 2">
<then>
<output expression=""Masukan Panjang Balok: ... cm"" newline="True"/>
<input variable="panjang"/>
<output expression=""Masukan Lebar Balok: ... cm"" newline="True"/>
<input variable="lebar"/>
<output expression=""Masukan Tinggi Balok: ... cm"" newline="True"/>
<input variable="tinggi"/>
<call expression="luaspermukaanbalok(panjang, lebar, tinggi)"/>
</then>
<else>
<if expression="menu == 3">
<then>
<output expression=""Masukan Panjang Balok: ... cm"" newline="True"/>
<input variable="panjang"/>
<output expression=""Masukan Lebar Balok: ... cm"" newline="True"/>
<input variable="lebar"/>
<output expression=""Masukan Tinggi Balok: ... cm"" newline="True"/>
<input variable="tinggi"/>
<call expression="volumebalok(panjang, lebar, tinggi)"/>
</then>
<else>
<if expression="menu == 4">
<then>
<output expression=""Masukan Luas Persegi: ... cm²"" newline="True"/>
<input variable="luas"/>
<output expression=""Masukan Lebar Persegi: ... cm"" newline="True"/>
<input variable="lebar"/>
<call expression="panjangpersegi(luas, lebar)"/>
</then>
<else>
<if expression="menu == 5">
<then>
<output expression=""Masukan Panjang Persegi Panjang: ... cm"" newline="True"/>
<input variable="panjang"/>
<output expression=""Masukan Lebar Persegi Panjang: ... cm"" newline="True"/>
<input variable="lebar"/>
<call expression="luaspersegipanjang(panjang, lebar)"/>
</then>
<else>
<if expression="menu == 6">
<then>
<output expression=""Masukan Panjang Persegi Panjang: ... cm"" newline="True"/>
<input variable="panjang"/>
<output expression=""Masukan Lebar Persegi Panjang"" newline="True"/>
<input variable="lebar"/>
<call expression="kelilingpersegipanjang(panjang, lebar)"/>
</then>
<else>
<if expression="menu == 7">
<then>
<output expression=""Masukan Panjang Balok: ... cm"" newline="True"/>
<input variable="panjang"/>
<output expression=""Masukan Lebar Balok: ... cm"" newline="True"/>
<input variable="lebar"/>
<output expression=""Masukan Tinggi Balok: ... cm"" newline="True"/>
<input variable="tinggi"/>
<call expression="diagonalbalok(panjang,lebar,tinggi)"/>
</then>
<else>
<output expression=""Menu Yang Anda Masukkan Tidak Valid !"" newline="True"/>
<assign variable="hasil" expression="1"/>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
<assign variable="hasil" expression="1"/>
<while expression="hasil != 0">
<output expression=""Lanjut Atau Selesai ( Y / N )"" newline="True"/>
<input variable="lanjut"/>
<if expression="lanjut == "Y" || lanjut == "y"">
<then>
<call expression="main"/>
<breakpoint expression="lanjut == "Y" || lanjut == "y"" always="False"/>
</then>
<else>
<if expression="lanjut == "N" || lanjut == "n"">
<then>
<assign variable="hasil" expression="0"/>
</then>
<else>
<output expression=""Menu Yang Anda Masukkan Tidak Valid !"" newline="True"/>
<assign variable="hasil" expression="1"/>
</else>
</if>
</else>
</if>
</while>
<output expression=""Terimakasih Telah Menggunakan Program Kami"" newline="True"/>
</body>
</function>
<function name="diagonalbalok" type="Integer" variable="hasil">
<parameters>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
<parameter name="tinggi" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="sqrt(panjang^2 + lebar^2 + tinggi^2)"/>
<output expression=""Diagonal Ruang Balok Adalah:" &hasil &"cm"" newline="True"/>
</body>
</function>
<function name="end" type="None" variable="">
<parameters/>
<body>
<output expression=""Program End"" newline="True"/>
</body>
</function>
<function name="kelilingbalok" type="Integer" variable="hasil">
<parameters>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
<parameter name="tinggi" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="4 * (panjang + lebar + tinggi)"/>
<output expression=""Keliling Balok Adalah : " &hasil &"cm"" newline="True"/>
</body>
</function>
<function name="kelilingpersegipanjang" type="Integer" variable="hasil">
<parameters>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="2 * (panjang + lebar)"/>
<output expression=""Keliling Persegi Panjang Adalah:" &hasil &"cm²"" newline="True"/>
</body>
</function>
<function name="LoopAwal" type="Boolean" variable="check">
<parameters>
<parameter name="menu" type="Integer" array="False"/>
</parameters>
<body>
<declare name="check" type="Boolean" array="False" size=""/>
<while expression="menu >= 8">
<output expression=""Menu Yang Anda Masukkan Salah !"" newline="True"/>
<call expression="main"/>
<breakpoint expression="" always="True"/>
</while>
<assign variable="check" expression="false"/>
</body>
</function>
<function name="luaspermukaanbalok" type="Integer" variable="hasil">
<parameters>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
<parameter name="tinggi" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="2*(panjang * lebar + panjang * tinggi +lebar * tinggi)"/>
<output expression=""Luas Permukaan Balok Adalah : " &hasil &"cm²"" newline="True"/>
</body>
</function>
<function name="luaspersegipanjang" type="Integer" variable="hasil">
<parameters>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="panjang * lebar"/>
<output expression=""Luas Persegi Panjang Adalah:" &hasil &"cm²"" newline="True"/>
</body>
</function>
<function name="panjangpersegi" type="Integer" variable="hasil">
<parameters>
<parameter name="luas" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="luas/lebar"/>
<output expression=""Panjang Persegi Panjang adalah:" &hasil &"cm"" newline="True"/>
</body>
</function>
<function name="Perhitungan" type="Integer" variable="hasil">
<parameters>
<parameter name="menu" type="Integer" array="False"/>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
<parameter name="tinggi" type="Integer" array="False"/>
<parameter name="luas" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Integer" array="False" size=""/>
<if expression="menu == 1">
<then>
<assign variable="hasil" expression="4 * (panjang + lebar + tinggi)"/>
<output expression=""Keliling Balok Adalah : " &hasil &"cm"" newline="True"/>
</then>
<else>
<if expression="menu == 2">
<then>
<assign variable="hasil" expression="2*(panjang * lebar + panjang * tinggi +lebar * tinggi)"/>
<output expression=""Luas Permukaan Balok Adalah : " &hasil &"cm²"" newline="True"/>
</then>
<else>
<if expression="menu == 3">
<then>
<assign variable="hasil" expression="panjang * lebar * tinggi"/>
<output expression=""Volume Balok Adalah : " &hasil &"cm³"" newline="True"/>
</then>
<else>
<if expression="menu == 4">
<then>
<assign variable="hasil" expression="luas/lebar"/>
<output expression=""Panjang Persegi Panjang adalah:" &hasil &"cm"" newline="True"/>
</then>
<else>
<output expression=""Menu Tidak Valid !"" newline="True"/>
<assign variable="hasil" expression="1"/>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</body>
</function>
<function name="volumebalok" type="Integer" variable="hasil">
<parameters>
<parameter name="panjang" type="Integer" array="False"/>
<parameter name="lebar" type="Integer" array="False"/>
<parameter name="tinggi" type="Integer" array="False"/>
</parameters>
<body>
<declare name="hasil" type="Real" array="False" size=""/>
<assign variable="hasil" expression="panjang * lebar * tinggi"/>
<output expression=""Volume Balok Adalah : " &hasil &"cm³"" newline="True"/>
</body>
</function>
</flowgorithm>