-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tomada de decisão 01.fprg
29 lines (29 loc) · 1.28 KB
/
Tomada de decisão 01.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
27
28
29
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="Ronaldo (UFPE)"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-08-07 10:51:28 "/>
<attribute name="created" value="Um9uYWxkbyAoVUZQRSk7Uk9OUVVFU0lMLURFU0tUOzIwMjItMDgtMDc7IjEwOjQzOjU0ICI7MzQ1OQ=="/>
<attribute name="edited" value="Um9uYWxkbyAoVUZQRSk7Uk9OUVVFU0lMLURFU0tUOzIwMjItMDgtMDc7IjEwOjUxOjI4ICI7MTszNTY3"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="CLIENTE" type="String" array="False" size=""/>
<declare name="CARTAO" type="Boolean" array="False" size=""/>
<declare name="NUMERO" type="String" array="False" size=""/>
<input variable="CLIENTE"/>
<input variable="CARTAO"/>
<if expression="CARTAO">
<then>
<input variable="NUMERO"/>
</then>
<else>
<output expression=""INFELIZMENTE A LOJA SOMENTE ACEITA COMPRAS VIA CARTÃO!"" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>