题解 1116: IP判断

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

IP判断 (Java代码)

摘要:解题思路:注意事项:参考代码:package cWeb.buleCup; import java.util.Scanner; public class Main{ public sta……
优质题解

IP判断 (C++代码)

摘要:解题思路:1.先判断输入格式是否为x.x.x.x,若果不是直接判断非法2.遍历输入的字符串,当遍历到 ' . '时,将前面已经遍历的字符串存入临时字符串,再判断此字符串是否合法,然后清……

IP判断 (C语言代码)

摘要:#include <stdio.h> #include <string.h> #include <math.h> int deal(char s[],int n);//函数解决 int mai……

IP判断 C语言 mirage解题记录

摘要:解题思路:1.判断字符串中有无  非数字 且 非 .  2.以 . 为分割符分为四组字符串3.每组字符串转化为 int 判断大小参考代码:#include<stdio.h> #include<std……

IP判断 (C语言代码)短就是精华

摘要:解题思路:说好的输入"End of file"结束,弄的我交了好几遍都是超出限制。       其实还是~Z结束。注意事项:    学多点函数才是解题的好帮手。    函数sscanf()和scanf……

IP判断 (C++代码)

摘要:解题思路:          该题已经给出IP合法的具体形式,因为A,B,C,D都是[0,255]的数字,所以我们可以用%d进行输入(k = scanf("%d.%d.%d.%d", &A, &B, ……

IP判断 (C语言代码)

摘要:#include "stdio.h"#include "string.h"int ex(int len,char a[]){ int i,s=0,t=1; for (i = len-1; i >=0;……