- 问答
- 2018-12-11 21:11:15 @
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 条评论
-
ZhouTianxing (njnu09170424) LV 9 @ 2018-12-12 01:06:39
最近好像经常System Error,不只是nnu域,其他域也是。
- 1