兄弟你厉害了啊,@九转星河

小程序大智慧
2016-12-30 08:27
程序代码:#include <stdio.h>
#include <string.h>
int main()
{
char email[]={"123456@"};
if(strchr(email,'@')==NULL)
printf("字符串中无'@'");
else
printf("字符串中有'@'");
return 0;
}

2016-12-30 12:22
刷贴能开眼界~strchr老师上课没讲,自学的~

2016-12-30 13:17
2016-12-30 16:05