再Delphi编程中‘求一个汉字的ascll码’的函数怎么写
2个回答
展开全部
完整的程序如下:
{$apptype console}
PROGRAM exp;
VAR
s:string;
i:integer;
BEGIN
readln(s);
i:=ord(s[1])*256+ord(s[2]);
writeln(i);
END.
该程序在DELPHI7下调试通过,运行过程如下:
E:\ygb>dcc32 b.dpr
Borland Delphi Version 15.0
Copyright (c) 1983,2002 Borland Software Corporation
b.dpr(11)
12 lines, 0.22 seconds, 11512 bytes code, 1809 bytes data.
E:\ygb>b.exe
猪
55021
{$apptype console}
PROGRAM exp;
VAR
s:string;
i:integer;
BEGIN
readln(s);
i:=ord(s[1])*256+ord(s[2]);
writeln(i);
END.
该程序在DELPHI7下调试通过,运行过程如下:
E:\ygb>dcc32 b.dpr
Borland Delphi Version 15.0
Copyright (c) 1983,2002 Borland Software Corporation
b.dpr(11)
12 lines, 0.22 seconds, 11512 bytes code, 1809 bytes data.
E:\ygb>b.exe
猪
55021
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询