自己学个显示ASCII码的程序嘛。
program ascii;
{$apptype console}
var i,n:integer; s:string;
begin
writeln('ascii码显示程序,输入字符将显示其ascii码,按回车结束程序');
repeat
readln(s);
n:=length(s);
if n>0 then for i:=1 to n do write(ord(s),' ');
writeln;
until n=0
end.
输入:中国
得出:214 208 185 250