判断一个数组中是否存在某个元素有函数吗?(马上给分)(20分)

  • 主题发起人 主题发起人 jsongy
  • 开始时间 开始时间
J

jsongy

Unregistered / Unconfirmed
GUEST, unregistred user!
1、字符s,字符数组Array1,判断Array1中是否有s
1、数字a,数值数组Array2,判断Array2中是否有a
 
for i:=0 to (n-1)
if 's' in array1 then
begin
showmessage("zhaodaole"):
exit;
end;
 
应该从0开始,到n-1
 
很一般的常识了
 
for i:=low(array1) to high(array1) do
begin
if array1='s' then
showmessage('Yes,position: '+inttostr(i))
esle
showmessage('No');
end;

for i:=low(array2) to high(array2) do
begin
if array2=a then
showmessage('Yes,position: '+inttostr(i))
esle
showmessage('No');
end;
 
多人接受答案了。
 
后退
顶部