-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm_area_of_circle.fprg
More file actions
23 lines (23 loc) · 1.01 KB
/
algorithm_area_of_circle.fprg
File metadata and controls
23 lines (23 loc) · 1.01 KB
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="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="HP"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2023-07-26 08:10:21 PM"/>
<attribute name="created" value="SFA7U0NJRUhBU0g7MjAyMy0wNy0yNjswNzo1NDo0MCBQTTsyMDIy"/>
<attribute name="edited" value="SFA7U0NJRUhBU0g7MjAyMy0wNy0yNjswODoxMDoyMSBQTTsyOzIxMjM="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="phi" type="Integer" array="False" size=""/>
<declare name="r" type="Integer" array="False" size=""/>
<declare name="areaofcircle" type="String" array="False" size=""/>
<read variable="phi"/>
<input variable="r"/>
<assign variable="areaofcircle" expression="phi*r*r"/>
<output expression="areaofcircle" newline="True"/>
</body>
</function>
</flowgorithm>