解题思路:
注意事项:
参考代码:
int Jude(char *s)
{
int x=0;
for(;*s;s++)
{
if(*s=='.') x=0;
else if(*s>='0'&&*s<='9') x=x*10+*s-48;
else return 0;
if(x>=256) return 0;
}
return 1;
}
void main()
{
char s[30];
while(1)
{
gets(s);
if(strcmp(s,"End of file")==0) break;
printf("%s\n",Jude(s)==0?"N":"Y");
}
}
0.0分
0 人评分