using System.IO;
using System;
class Program
{
static void Main()
{
string s1="iamamamok";
string s2="mam";
int i=0,j=0;
int count=0,countchar=0;
while(j<s2.Length)
{
while(i<s1.Length)
{
if(s1[i]==s2[j])
{
countchar++;
j++;
if(countchar==(s2.Length))
{
count +=1;
j=0;
countchar=0;
}
}
else
{
j=0;
countchar=0;
}
i++;
if(i==s1.Length)
{
break;
}
}
}
Console.Write(count);
}
}
当我尝试运行此代码时,它将给出超出范围的数组索引,但我尝试涵盖这些字符串的所有可能情况,请解释为什么会发生此错误???????????????????????????????????????????????
你在内部循环中递增j
,然后再次使用它,而不检查它是否小于字符串的长度。
(供将来参考,请发布错误消息,包括发生错误的行,因为它可以帮助其他人调试(