2017年2月5日

判断一个ip地址合法性(基础c,不用库函数)

摘要: #include int judge(char *strIp); int main() { char a[20]; while(1) { scanf("%s", a); if(0 == judge(a)) { printf("this is a correct ip\n"); } ... 阅读全文

posted @ 2017-02-05 00:26 新手酱油 阅读(2463) 评论(0) 推荐(0) 编辑

导航