giovedì 3 ottobre 2013

Costrutti

Cos'è un costrutto?

in c (ma anche in altri linguaggi ad alto livello) un costrutto non è altro che una struttura di controllo in un linguaggio di programmazione strutturata sono quei dispositivi sintattici che permettono di combinare tra loro istruzioni elementari creando cosi istruzioni complesse o blocchi di istruzioni, controllando il flusso della loro esecuzione, i piu famosi in c sono i costrutti selettivi come if - else e lo switch, e i costrutti iterativi come il while e il for.

nel caso dello switch la sintassi è

switch (nomeVariabile)

{

case 1:

.......istruzioni......

break;

case 2:

.....istruzioni.......

break;

}

N.B: se non viene scritta l'istruzione break nel primo caso quando il primo caso viene eseguito eseguira tutte le istruzioni fino a quando non trovera l'sitruzione break ad esempio quella del secondo caso.





in c (but also in other high-level languages​​) a construct is nothing more than a control structure in a structured programming language syntax are those devices that allow you to combine their elementary instructions thus creating complex instructions or blocks of instructions, controlling the flow of their execution, the most famous in c constructs are selective as if - else statement and the switch, and looping constructs such as while and for.

in the case of the switch the syntax is

{

case 1:

......instruction......

break;

case 2:

....instruction......

break;

}

NB: If the break statement is not written in the first case when the first case is executed will execute all the instructions until you will find the sitruzione break such as that of the latter.

Nessun commento:

Posta un commento