• Asignatura: Informática
  • Autor: danielamoralesperez4
  • hace 6 años

DESAROLLE UN ALGORITMO QUE LEA CUATRO NUMEROS DIFERENTES Y A CONTINUACION IMPRIMA EL MAYOR DE LOS CUATRO NUMEROS INTRODUCIOS Y TAMBIEN EL MENOR DE ELLOS

Respuestas

Respuesta dada por: xbarriox23
3

Respuesta:

ESPERO TE SIRVA :,)

Explicación:

Proceso sin_titulo

Definir a, b, c, d Como Entero

Escribir "INGRESE CUATRO NÚMEROS"

leer a

Leer b

Leer c

Leer d

si a = b o a = c o a = d o b = c o b = d o c = d Entonces

 Escribir "LOS NÚMERO NO PUEDEN SER IGUALES"

SiNo

 si a > b y a > c y a > d Entonces

  Escribir "EL NÚMERO MAYOR ES: ", a

 SiNo

  si b > a y b > c y b > d Entonces

   Escribir "EL NÚMERO MAYOR ES: ", b

  SiNo

   si c > a y c > b y c > d Entonces

    Escribir "EL NÚMERO MAYOR ES: ", c

   SiNo

    si d > a y d > b y d > c Entonces

     Escribir "EL NÚMERO MAYOR ES: ", d

    FinSi

   FinSi

  FinSi

 FinSi

 

 si a < b y a < c y a < d Entonces

  Escribir "EL NÚMERO MENOR ES: ", a

 SiNo

  si b < a y b < c y b < d Entonces

   Escribir "EL NÚMERO MENOR ES: ", b

  SiNo

   si c < a y c < b y c < d Entonces

    Escribir "EL NÚMERO MENOR ES: ", c

   SiNo

    si d < a y d < b y d < c Entonces

     Escribir "EL NÚMERO MENOR ES: ", d

    FinSi

   FinSi

  FinSi

 FinSi

FinSi

FinProceso


danielamoralesperez4: muchas gracias, me ayudo demasiado
Preguntas similares