Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/11/2011, 11:40
_Ruben_
 
Fecha de Ingreso: enero-2008
Mensajes: 201
Antigüedad: 16 años, 10 meses
Puntos: 39
Respuesta: Programa de nombres

Si no entendí mal, aquí tienes la solución:

Código:
nombre = "";
if (Primer nombre != NULL)
   nombre += Primer nombre;
if (Segundo nombre != NULL)
   nombre += Segundo nombre;
if(Primer apellido != NULL)
   nombre += Primer apellido;
if(Segundo apellido != NULL)
   nombre += Segundo apellido;