自测是老出现System Error怎么办?

System Error
Exception('http error 404',)
自测时老是出现这个是怎么回事?
#include <stdio.h>
int main()
{char str1[100],str2[100];char *p,*q;int count=0 ;
scanf("%s\n",str1);
scanf("%s" ,str2);
while(*str1!='\0')
{ p=str1;
q=str2;
while((*p==*q)&&(*p!='\0')&&(*q!='\0'))
{
p++;
q++;
}
if(*q=='\0')
count ++;

}
printf("%d",count);
return 0;
}

1 条评论

  • 1