解题思路:
注意事项:
参考代码:
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;
if(Jude(s)) puts("Y");
else puts("N");
}
}
0.0分
0 人评分
核桃的数量 (C语言代码)浏览:726 |
陶陶摘苹果2 (C语言代码)浏览:650 |
众数问题 (C语言代码)浏览:717 |
幸运数 (C++代码)浏览:2982 |
C二级辅导-等差数列 (C语言代码)浏览:831 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:441 |
发工资咯 (C语言代码)浏览:815 |
C语言程序设计教程(第三版)课后习题6.11 (C++代码)浏览:534 |
Manchester-字符串的输入输出处理浏览:12895 |
A+B for Input-Output Practice (VI) (C++代码)浏览:436 |