Estructuras de control
Enviado por Adan Jose • 16 de Septiembre de 2015 • Ensayo • 614 Palabras (3 Páginas) • 99 Visitas
ESTRUCTURAS DE CONTROL
ESTRUCTURA SELECTIVAS
NOMBRE | PSEUDOCÓDIGO O ALGORITMO COMPUTACIONAL | VISUAL BASIC .NET | Net Beans |
SELECTIVA SIMPLE | SI condición ENTONCES <Conjunto de instrucciones> FIN DE SI | IF condición THEN <Conjunto de instrucciones> END IF | IF (condición){ acciones } |
FLUJOGRAMA DE LA ESTRUCTURA DE CONTROL SIMPLE | [pic 2][pic 1] | ||
NOMBRE | PSEUDOCÓDIGO O ALGORITMO COMPUTACIONAL | VISUAL BASIC .NET | Net Beans |
SELECTIVA DOBLE O COMPUESTA | SI condición ENTONCES <Conjunto de instrucciones 1> SI NO <Conjunto de instrucciones 2> FIN DE SI | IF condición THEN <Conjunto de instrucciones 1> ELSE <Conjunto de instrucciones 2> END IF | IF (condicion){ acciones } ELSE{ acciones alternas } |
FLUJOGRAMA DE LA ESTRUCTURA DE CONTROL DOBLE O COMPUESTA | [pic 4][pic 3] | ||
NOMBRE | PSEUDOCÓDIGO O ALGORITMO COMPUTACIONAL | VISUAL BASIC .NET | Net Beans |
SELECTIVA MÚLTIPLE | CASO variable Valor 1: <Conjunto de instrucciones 1> Valor 2: <Conjunto de instrucciones 2> Valor 3: <Conjunto de instrucciones 3> * * Valor n: <Conjunto de instrucciones n> SI NO <Conjunto de instrucciones> FIN DE CASO | SELECT CASE variable CASE Valor 1: <Conjunto de instrucciones 1> CASE Valor 2: <Conjunto de instrucciones 2> CASE Valor 3: <Conjunto de instrucciones 3> * * CASE Valor n: <Conjunto de instrucciones n> SI NO <Conjunto de instrucciones> END SELECT | IF(condición) acciones; ELSE IF (condición) acciones; ELSE IF (condición) acciones; ElSE acciones; SWITCH(ciclo){ CASE 1: acciones; CASE 2: acciones; DEFAULT: acciones; } |
FLUJOGRAMA DE LA ESTRUCTURA DE CONTROL MÚLTIPLE | [pic 6][pic 5] |
...