Ini adalah source
function Tambahnol(const Source: string; Len: Integer): string;
var
i: Integer;
begin
Result := Source;
for i := 1 to (Len-Length(Source)) do
Result := '0' + Result;
end;
Ini adalah web suka-suka, materi yang disajikan macam-macam
Ini adalah source
function Tambahnol(const Source: string; Len: Integer): string;
var
i: Integer;
begin
Result := Source;
for i := 1 to (Len-Length(Source)) do
Result := '0' + Result;
end;