ESTRUCTURA CASE Dim EDAD EDAD = InputBox("DIME TU EDAD") Select Case EDAD Case 1 To 18: Text1.Text = ("ERES UN NIÑO") Case 18 To 21: Text1.Text = ("ERES UN JOVEN") Case 22 To 50: Text1.Text = ("ERES UN ADULTO") Case 51 To 120: Text1.Text = ("ERES UN VIEJITO") Case Else: Text1.Text = ("TIENES QUE TENER UNA EDAD ENTRE 1 AÑO A 120") End Select End Sub ESTRUCTURA IF Dim computadora Computadora = Inputbox (“que computadora quiere”) If computadora está ocupada then Else Pasar a otra End if Dim coche If no enciende then No tiene gasolina End if Dim celular If el celular no enciende then No está cargado End if Dim celular, llamada If el cellular no puede hacer la llamada then No hay señal End if Dim Audifonos, Musica If no se puede escuchar música then Los audífonos no funcionan End if ESTRUCTURA THEN dim calificacion if calificacion > 8 then print ("aprobado") end if dim lado 1 , lado 2 , lado 3 if lado 1 = lado 2 o lado 2 = lado 3 o lado 1 = lado 3 then Cuadrado End if Dim promedio , If calificación < 6 then Reprobado End if Dim frio , abrigo If hace frio then Me pongo una chamrra End if Dim foco, If no enciende la lampara then El foco esta fundido End if ESTRUCTURA ELSE Dim llanta, chofer if la llanta del coche está dañada then el coche no andará else si el chofer cambia la llanta then el coche andará end if Dim computadora, internet , if no se puede conectar al explorador en la computadora then esta desconectado el cable else no hay internet end if dim edad , if es mayor de 18 then es adulto elseif es menor de 18 then es adolescente end if Dim a,b If a>b then El mayor es A Else el mayor es B End If Dim lado a , lado b , lado c If lado a = lado b = lado c then Equilátero Else lado 1 <> lado 2 y lado 2 <> lado 3 y lado 1 <>lado 3 then Escaleno End if