Please enable JavaScript.
Coggle requires JavaScript to display documents.
Control de flujo y arrays - Coggle Diagram
Control de flujo y arrays
Estructuras de selección
If - else
If (Condición){ -Instruccion{
else{
-Instruccion{
Switch
Switch (Expresión){
Case valor_1:
Sentencia;
break;{
If
If(Condición){
-Instrucción {
Estructuras de repetición
Do...While
Do{
Instrucción ;
{ While(Condición)
For
For (Variable de control = Valo de inicio;hastaCodiciónDeContinución;Expresión Incremento){
-Instrucciones; {
While
While(Condición){
-Intrucción;
{
Arrays
Declaración:
tipo [] identificador;
tipo identificador [];
Instanciar:
Identificador = new tipo [longitud]
Inicializar:
identificador [índice] = valor;
Bidimensionales
tipo [] [] identificador = new tipo [tamaño] [tamaño]