-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHipotenusBulma.fprg
23 lines (23 loc) · 1.13 KB
/
HipotenusBulma.fprg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<flowgorithm fileversion="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="veysel"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-01 09:52:59 ÖS"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTAxOzA5OjMxOjQyIMOWUzsyNzQ4"/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTAxOzA5OjUyOjU5IMOWUzs2OzI4NzI="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="kenar1, kenar2, hipotenus" type="Real" array="False" size=""/>
<output expression=""kenar 1 giriniz"" newline="True"/>
<input variable="kenar1"/>
<output expression=""kenar 2 giriniz"" newline="True"/>
<input variable="kenar2"/>
<assign variable="hipotenus" expression="sqrt(kenar1^2+kenar2^2)"/>
<output expression=""Girilen sayinin hipotenüsü:" &hipotenus" newline="True"/>
</body>
</function>
</flowgorithm>