-
Notifications
You must be signed in to change notification settings - Fork 0
/
tomada_de_decisao.fprg
30 lines (30 loc) · 1.34 KB
/
tomada_de_decisao.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
30
<?xml version="1.0"?>
<flowgorithm fileversion="2.11">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="tali_"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2021-08-27 07:05:30 "/>
<attribute name="created" value="dGFsaV87REVTS1RPUC00OTlTSjlPOzIwMjEtMDgtMjc7IjA2OjUyOjExICI7Mjc1NQ=="/>
<attribute name="edited" value="dGFsaV87REVTS1RPUC00OTlTSjlPOzIwMjEtMDgtMjc7IjA3OjA1OjMwICI7MjsyODY0"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="alternativa" type="String" array="False" size=""/>
<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 só realizamos vendas por meio de cartão de crédito."" newline="True"/>
</else>
</if>
</body>
</function>
</flowgorithm>