-
Notifications
You must be signed in to change notification settings - Fork 0
/
celcius_to_farenhiet.fprg
22 lines (22 loc) · 1.08 KB
/
celcius_to_farenhiet.fprg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="CB.EN.U4CYS22027"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-11-04 10:58:31 AM"/>
<attribute name="created" value="Q0IuRU4uVTRDWVMyMjAyNzsyMDIyMjNNQVlDMDA2NDsyMDIyLTExLTA0OzA5OjA4OjE4IEFNOzMwNjc="/>
<attribute name="edited" value="Q0IuRU4uVTRDWVMyMjAyNzsyMDIyMjNNQVlDMDA2NDsyMDIyLTExLTA0OzEwOjU4OjMxIEFNOzQ7MzE3MA=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="a, b" type="Real" array="False" size=""/>
<output expression=""enter temperature in celcius"" newline="True"/>
<input variable="a"/>
<comment text="Farenheit= 9/5(celcius)+32 "/>
<assign variable="b" expression="1.8*a+32"/>
<output expression=""your given temperature in ferenhiet is " &b" newline="True"/>
</body>
</function>
</flowgorithm>