S
sh8888
Unregistered / Unconfirmed
GUEST, unregistred user!
下面这段代码为什么会没有效果?抱歉,我只有10分!
//统计中英文字个数
procedure TForm1.Button1Click(Sender: TObject)
var s:string
i,e,c:integer
begin
s:=memo1.text
e:=0;
c:=0
for i:=1 to length(s) do
begin
if (ord(s)=33)and(ord(s)=126) then
begin inc(e)
label1.caption:='英文个数:'+inttostr(e)
end else if
(ord(s)=127) then
begin inc(c)
label2.caption:='中文个数:'+inttostr(c div 2)
end
end
end;
//统计中英文字个数
procedure TForm1.Button1Click(Sender: TObject)
var s:string
i,e,c:integer
begin
s:=memo1.text
e:=0;
c:=0
for i:=1 to length(s) do
begin
if (ord(s)=33)and(ord(s)=126) then
begin inc(e)
label1.caption:='英文个数:'+inttostr(e)
end else if
(ord(s)=127) then
begin inc(c)
label2.caption:='中文个数:'+inttostr(c div 2)
end
end
end;