1

我有这个任务,我要求用户输入 11 位代码(字符串)。

1) 例如,假设用户输入代码为 37605030299。

2)然后我需要检查最后一个数字是否匹配。这是您获得最后一个数字的方式:nr11 = (nr1*1 + nr2*2 + nr3*3 + nr4*4 + nr5*5 + nr6*6 + nr7*7 + nr8*8 + nr9*9 + nr10* 1) 模式 11

3)这是我写的:

var  C, nr1, nr2, nr3, nr4, nr5, nr6, nr7, nr8, nr9, nr10, nr11: string;

begin

nr1:=(copy(C, 1, 1));  
nr2:=(copy(C, 2, 1));
nr3:=(copy(C, 3, 1));
nr4:=(copy(C, 4, 1));
nr5:=(copy(C, 5, 1));
nr6:=(copy(C, 6, 1));
nr7:=(copy(C, 7, 1));
nr8:=(copy(C, 8, 1));
nr9:=(copy(C, 9, 1));
nr10:=(copy(C, 10, 1));
nr11:=(copy(C, 11, 1));   

writeln('Enter the code which contains 11 digits:');
 readln(C);

 if nr11 = (nr1*1 + nr2*2 + nr3*3 + nr4*4 + nr5*5 + nr6*6 + nr7*7 + nr8*8 + nr9*9 + nr10*1) mod 11 then
  begin
   writeln('The code is correct!');
  end

else
 if nr11 <> (nr1*1 + nr2*2 + nr3*3 + nr4*4 + nr5*5 + nr6*6 + nr7*7 + nr8*8 + nr9*9 + nr10*1) mod 11
  begin
   writeln('The code is incorrect!');
  end;

  readln();
end.

这不起作用,因为我知道你不能像我一样在方程式中使用字符串,但它会起作用吗?我只是在学习 Pascal,如果这看起来太愚蠢了,对不起。

此 UI 代码应该是正确的。检查:

1*3 + 2*7 + 3*6 + 4*0 + 5*5 + 6*0 + 7*3 + 8*0 + 9*2 + 1*9 = 108

108/11 ~ 9,8

9*11 = 99

108-99 = 9(答案是9,所以最后一位必须是9,最后一位是9表示密码正确)

如果您不明白我试图做什么,那么我在 python 中找到了一个应该是正确的示例:

def checkIDCode(code):
    if len(code) != 11 or not code.isdigit():
            return False

    c = map(int,code)
    w1 = [1,2,3,4,5,6,7,8,9,1]
    w2 = [3,4,5,6,7,8,9,1,2,3]

    s1 = sum(map(lambda x,y: x*y, c[:-1], w1))%11
    s2 = (sum(map(lambda x,y: x*y, c[:-1], w2))%11)%10

    return s1 == c[-1] or s1 == 10 and s2 == c[-1]
4

2 回答 2

0

这看起来像 ISBN。要计算校验位,我建议如下。

function DigitToInt(const c: Char): Integer;
begin
  if (c<'0') or (c>'9') then
    raise Exception.Create('Invalid input');
  Result := ord(c)-ord('0');
end;

这会将“0”到“9”范围内的单个字符转换为相应的整数值。

function CheckDigit(const s: string): Integer;
var
  i: Integer;
begin
  if Length(s)<>11 then
    raise Exception.Create('Invalid input');
  Result := 0;
  for i := 1 to 10 do
    inc(Result, DigitToInt(s[i])*i);
  Result := Result mod 11;
end;

这将计算 11 位代码的校验位。

要将实际校验位与计算出的校验位进行比较,您可以编写:

if CheckDigit(code) <> DigitToInt(code[11]) then
  .... handle error
于 2013-03-23T21:01:35.557 回答
0

首先,当 C 为空时,您从 C 中复制内容。您应该在尝试访问它的元素之前放置 readln(C) :

writeln('Enter the code which contains 11 digits:');
readln(C);

nr1:=...
nr2:=...

第二件事是,如果值只有 1 个字符,您可以通过索引访问它:

nr1:= C[1];
nr2:= C[2];
...

要将字符串转换为整数,您必须包含 sysutils 才能使用 StrToInt 函数:http ://www.freepascal.org/docs-html/rtl/sysutils/strtoint.html

另一种方法(char by char)是计算 char 值和 48 之间的差异(这是 '0' 的 ASCII 码)

示例代码:

uses sysutils;
var  C:string
     nr1, nr2, nr3, nr4, nr5, nr6, nr7, nr8, nr9, nr10, nr11: integer;

begin
readln(C);
nr1:=strtoint(C[1]);
nr2:=strtoint(C[2]);
nr3:=strtoint(C[3]);
.
.
.
if nr11 = (nr1*1 + nr2*2 + nr3*3 + nr4*4 + nr5*5 + nr6*6 + nr7*7 + nr8*8 + nr9*9 + nr10*1) mod 11 then
   writeln('The code is correct!') 
   //if you skip the begin/end statements, only the next statement 
   //is executed in loops/if statements
else writeln('Not correct'); //notice that I didn't use ELSE IF but ELSE
readln; 
//in Pascal you can skip the parathenses if you don't pass arguments to the function
end.
于 2013-03-23T21:04:33.297 回答