两个strchr()函数为什麽不一样呢?
#include <stdio.h>#include <string.h>
#define michael while(getchar()!='\n')
main()
{
char a;
while(!strchr("1234",a=getchar()))
{
michael;
printf("请输入数字1,2,3,4:");
}
return 0;
}
#include <stdio.h> //确认输入为1, 2, 3 ,4。 ,这一个为什麽错啦呢?
#include <string.h>
#define michael while(getchar()!='\n')
main()
{
char a;
a=getchar();
while(!strchr("1234",a))
{
michael;
printf("请输入数字1,2,3,4:");
}
return 0;
}