Ver Mensaje Individual
  #6  
Antiguo 03-10-2011
LeonelGisuk LeonelGisuk is offline
Registrado
NULL
 
Registrado: oct 2011
Posts: 3
Reputación: 0
LeonelGisuk Va por buen camino
Replicate

Código:
function Replicate(Caracter: string; Quant: Integer): string;
var
    I: Integer;
begin
    Result := '';
    for I := 1 to Quant do
      Result := Result + Caracter;
end;
Responder Con Cita