-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpressao aritmetica.fprg
23 lines (23 loc) · 1.01 KB
/
Expressao aritmetica.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="2.11">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="mvoli"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2021-08-12 04:01:06 "/>
<attribute name="created" value="bXZvbGk7REVTS1RPUC1GUzFPOTE4OzIwMjEtMDgtMTI7IjAzOjQ5OjQ4ICI7Mjc3Ng=="/>
<attribute name="edited" value="bXZvbGk7REVTS1RPUC1GUzFPOTE4OzIwMjEtMDgtMTI7IjA0OjAxOjA2ICI7MTsyODY3"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="A, B, C" type="Integer" array="False" size=""/>
<assign variable="A" expression="2"/>
<assign variable="B" expression="(A+3)"/>
<assign variable="C" expression="(A+B)"/>
<output expression="A" newline="True"/>
<output expression="B" newline="True"/>
<output expression="C" newline="True"/>
</body>
</function>
</flowgorithm>