Jump to content
Fórum Script Brasil
  • 0

Calculo De Digitos


Guest Fonsecd

Question

Guest Fonsecd

Olá pessoal, boa tarde, gostaria de saber a formula pra verificar se o digito do titulo eleitoral é válido ou não?desde já agradeço a a tençao!

Dario fonseca

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Existem vários sites sobre Delphi que tem rotina pra verificação de tudo o quanto é documento!!

Function ValidaTituloEleitor(NumTitulo: string): Boolean;
var
i, Soma : integer;
sTitulo: string;
Resto, Dig1, Dig2 : double;
begin
sTitulo := '';
for i := 1 to Length(NumTitulo) do
if (Copy(NumTitulo,i,1) >= '0') and (Copy(NumTitulo,i,1) <= '9') then
sTitulo := sTitulo + Copy(NumTitulo,i,1);
sTitulo := FormatFloat('0000000000000', StrToFloat(sTitulo));
Soma := StrToInt(sTitulo[1]) * 2 +
StrToInt(sTitulo[2]) * 9 +
StrToInt(sTitulo[3]) * 8 +
StrToInt(sTitulo[4]) * 7 +
StrToInt(sTitulo[5]) * 6 +
StrToInt(sTitulo[6]) * 5 +
StrToInt(sTitulo[7]) * 4 +
StrToInt(sTitulo[8]) * 3 +
StrToInt(sTitulo[9]) * 2;
Resto := Soma mod 11;

if (Resto = 0) or (Resto = 1) then
begin
if (Copy(sTitulo,10,2) = '01') or (Copy(sTitulo,10,2) = '02') then
begin
if Resto = 0 then
Dig1 := 1
else
Dig1 := 0;
end
else
Dig1 := 0
end
else
Dig1 := 11 - Resto;

Soma := StrToInt(FloatToStr((StrToInt(sTitulo[10]) * 4) +
(StrToInt(sTitulo[11]) * 3) + (Dig1 * 2)));
Resto := Soma mod 11;

if (Resto = 0) or (Resto = 1) then
begin
if (Copy(sTitulo,10,2) = '01') or (Copy(sTitulo,10,2) = '02') then
begin
if Resto = 0 then
Dig2 := 1
else
Dig2 := 0;
end
else
Dig2 := 0;
end
else
Dig2 := 11 - Resto;
if (StrToInt(sTitulo[12]) > Dig1) or (StrToInt(sTitulo[13]) > Dig2) then
Result := False
else
Result := True; 

www.delphi.eti.br

Adiconada dia: 11/02/04 às 11:53:09, por: Emir Teófilo Calife Neto

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...