两个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;
}

[b] 你要有勇气去听从你直觉和心灵的指示,所有其他的事情都是次要的。