1个回答
展开全部
s:='abcdefghijk';
以下二种方法都能找出‘h'在s中的位置为8,而'x'在s中的位置为0(表示不存在):
方法1:
position:=pos('h',s);
writeln(position);
方法2:
for position:=1 to length(s) do
if s[position]='h' then break;
if s[position]<>'h' then position:=0;
writeln(position);
以下二种方法都能找出‘h'在s中的位置为8,而'x'在s中的位置为0(表示不存在):
方法1:
position:=pos('h',s);
writeln(position);
方法2:
for position:=1 to length(s) do
if s[position]='h' then break;
if s[position]<>'h' then position:=0;
writeln(position);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询