标签:地址 eof scanf std log 简单 logs amp bsp
#include<stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) { while(n--) { int a,b,c,d; scanf("%d.%d.%d.%d",&a,&b,&c,&d); if ((a>-1 && a<256)&&(b>-1 && b<256)&&(c>-1 && c<256)&&(d>-1 && d<256)) printf("Yes!\n"); else printf("No!\n"); } } return 0; }
题目1203:IP地址-----------------把IP地址当成四个数字来输入就简单了很多
标签:地址 eof scanf std log 简单 logs amp bsp
原文地址:http://www.cnblogs.com/jianrenguo/p/6508983.html