-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Pide los datos de un cliente, nombre, apellido y dirección y sale del programa.
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
Proceso NombreApellidoYDireccion
Escribir Sin Saltar "Ingresa el nombre:";
Leer nombre;
Escribir Sin Saltar "Ingresa el apellido:";
Leer apellido;
Escribir Sin Saltar "Ingresa el direccion:";
Leer direccion;
Escribir "Nombre: ", nombre;
Escribir "Apellido: ", apellido;
Escribir "Direccion: ", direccion;
FinProceso
Escribir Sin Saltar "Ingresa el nombre:";
Leer nombre;
Escribir Sin Saltar "Ingresa el apellido:";
Leer apellido;
Escribir Sin Saltar "Ingresa el direccion:";
Leer direccion;
Escribir "Nombre: ", nombre;
Escribir "Apellido: ", apellido;
Escribir "Direccion: ", direccion;
FinProceso