Difference between revisions of "Select Case"
From ArcoWiki
| Line 24: | Line 24: | ||
::::<code>ENDCAS</code> | ::::<code>ENDCAS</code> | ||
::<code>ENDSEL</code> | ::<code>ENDSEL</code> | ||
| + | |||
| + | [[Category:Dmis_Tutorial]] | ||
Revision as of 15:17, 4 August 2016
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,iDECL/CHAR,50,txi=ASSIGN/10SELECT/i
$$ i is the variable that controls the part program behaviorCASE/10
$$ If the i value is equal to 10tx=ASSIGN/CONCAT('THE ACTUAL VALUE OF X IS: ',STR(i))TEXT/OPER,tx
ENDCASCASE/20
$$ If the i value is equal to 20tx=ASSIGN/CONCAT('THE ACTUAL VALUE OF X IS: ',STR(i))TEXT/OPER,tx
ENDCASDFTCASTEXT/OPER,'X is not equal to the 2 cases'
ENDCAS
ENDSEL