-
Notifications
You must be signed in to change notification settings - Fork 0
/
CELCIOUS TO FARENHEIT CONVERSION.fprg
26 lines (26 loc) · 1.31 KB
/
CELCIOUS TO FARENHEIT CONVERSION.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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="placement"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-11-04 10:42:30 AM"/>
<attribute name="created" value="cGxhY2VtZW50OzIwMjIyM01BWUMwMDQ2OzIwMjItMTEtMDQ7MDk6MTM6MDMgQU07MzAwOQ=="/>
<attribute name="edited" value="cGxhY2VtZW50OzIwMjIyM01BWUMwMDQ2OzIwMjItMTEtMDQ7MTA6NDI6MzAgQU07NzszMTE3"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="CELCIOUS" type="Real" array="False" size=""/>
<comment text="ENTER THE VALUE OF CELCIOUS"/>
<output expression=""ENTER THE DEGREE CELCIOUS"" newline="True"/>
<comment text="INPUT OF CELCIOUS IS TAKEN"/>
<input variable="CELCIOUS"/>
<declare name="FARENHEIT" type="Real" array="False" size=""/>
<comment text="FARENHEIT IS CONVERTED TO CELCIOUS"/>
<assign variable="FARENHEIT" expression="1.8*(CELCIOUS)+32"/>
<output expression=""THE VALUE OF FARENHEIT IS " & FARENHEIT" newline="True"/>
<comment text="OUTPUT IS SHOWED"/>
</body>
</function>
</flowgorithm>