-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path(Doğru) Vücut Kitle Endeksi Hesaplama.fprg
More file actions
64 lines (64 loc) · 3.52 KB
/
(Doğru) Vücut Kitle Endeksi Hesaplama.fprg
File metadata and controls
64 lines (64 loc) · 3.52 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
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
<?xml version="1.0"?>
<flowgorithm fileversion="2.11">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="LENOVO"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2021-12-21 05:21:56 ÖS"/>
<attribute name="created" value="TEVOT1ZPO0RFU0tUT1AtU0RQVFBRODsyMDIxLTEyLTIxOzA1OjAwOjQ0IMOWUzsyOTkw"/>
<attribute name="edited" value="TEVOT1ZPO0RFU0tUT1AtU0RQVFBRODsyMDIxLTEyLTIxOzA1OjIxOjU2IMOWUzsyOzMxMDU="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="agırlık, boy, x" type="Real" array="False" size=""/>
<output expression=""Ağırlığınızı 'Kilogram' Cinsinden Giriniz!!"" newline="True"/>
<input variable="agırlık"/>
<output expression=""Boyunuzu 'Metre' Cinsinden Giriniz!!"" newline="True"/>
<input variable="boy"/>
<assign variable="x" expression="agırlık / boy^2"/>
<output expression=""Vücut Kitle Endeksin: " & x" newline="True"/>
<if expression="x < 18.5">
<then>
<output expression=""Zayıfsın"" newline="True"/>
</then>
<else>
<if expression="x >= 18.5 && x < 25">
<then>
<output expression=""Sağlıklısın :D"" newline="True"/>
</then>
<else>
<if expression="x >= 25 && x < 30">
<then>
<output expression=""Fazla Kilolusun"" newline="True"/>
</then>
<else>
<if expression="x >= 30 && x < 35">
<then>
<output expression=""1. Dereceden Obezitesin :'("" newline="True"/>
</then>
<else>
<if expression="x >= 35 && x < 40">
<then>
<output expression=""2. Dereceden Obezitesin"" newline="True"/>
</then>
<else>
<if expression="x >= 40">
<then>
<output expression=""3. Dereceden Obezitesin :'( :'("" newline="True"/>
</then>
<else/>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</body>
</function>
</flowgorithm>