使用Pascal字符串(正确的Python示例)

时间:2013-03-23 19:14:11

标签: python string pascal freepascal

我有这个任务,我要求用户输入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)mod 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]

2 个答案:

答案 0 :(得分: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

答案 1 :(得分: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.