解题思路:
注意事项:
参考代码:
while True:
s=input()
if s=='End of file':
break
a,b,c,d=s.split('.')
if a.isdigit() and b.isdigit() and c.isdigit() and d.isdigit():
if a[0]!='0' and b[0]!='0' and c[0]!='0' and d[0]!='0':
if 0<=int(a)<=255 and 0<=int(b)<=255 and 0<=int(c)<=255 and 0<=int(d)<=255:
print('Y')
else:
print('N')
else:
print('N')
else:
print('N')
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:512 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:569 |
C二级辅导-进制转换 (C语言代码)浏览:750 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
陶陶摘苹果2 (C语言代码)浏览:651 |
母牛的故事 (C语言代码)浏览:519 |
汽水瓶 (C语言代码)浏览:579 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:469 |
1063题 初学者,求帮忙看下,不知道哪错了浏览:239 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:643 |