Selecionar caso

Da wiki ArcoWiki
Revisão em 09h37min de 15 de junho de 2018 por Slia (Discussão | contribs) (Criou a página com "The construct '''Select Case''' is the technique to condition the execution of a program depending the value of a certain variable. <code><span style="color: green;...")
(dif) ← Revisão anterior | Revisão atual (dif) | Revisão seguinte → (dif)
Ir para: navegação, pesquisa

The construct Select Case is the technique to condition the execution of a program depending the value of a certain variable.

$$ Example of Select Case

DECL/INTGR,i
DECL/CHAR,50,tx
i=ASSIGN/10
SELECT/i
$$ i is the variable that controls the part program behavior
CASE/10
$$ If the i value is equal to 10
tx=ASSIGN/CONCAT('THE ACTUAL VALUE OF X IS: ',STR(i))
TEXT/OPER,tx
ENDCAS
CASE/20
$$ If the i value is equal to 20
tx=ASSIGN/CONCAT('THE ACTUAL VALUE OF X IS: ',STR(i))
TEXT/OPER,tx
ENDCAS
DFTCAS
TEXT/OPER,'X is not equal to the 2 cases'
ENDCAS
ENDSEL