IP判断 (C语言代码)/ 这应该是已有题解里面最简单的了 摘要:解题思路:1、sscanf 和 scanf 类似,只不过sscanf是从给定的源读取数据,scanf 是从stdin读取数据。2、int sscanf(const char *buffer, cons…… 题解列表 2018年05月31日 14 点赞 8 评论 816 浏览 评分:8.5
IP判断 (Java代码) 摘要:解题思路:注意事项:参考代码:package cWeb.buleCup; import java.util.Scanner; public class Main{ public sta…… 题解列表 2018年06月14日 0 点赞 0 评论 486 浏览 评分:0.0
IP判断 (C语言代码)容易理解 摘要:解题思路: 就这样吧!注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[100]; int n=1; in…… 题解列表 2018年06月22日 2 点赞 0 评论 568 浏览 评分:0.0
优质题解 IP判断 (C++代码) 摘要:解题思路:1.先判断输入格式是否为x.x.x.x,若果不是直接判断非法2.遍历输入的字符串,当遍历到 ' . '时,将前面已经遍历的字符串存入临时字符串,再判断此字符串是否合法,然后清…… 题解列表 2018年07月02日 3 点赞 4 评论 4528 浏览 评分:8.5
IP判断 (C语言代码) 摘要:#include <stdio.h> #include <string.h> #include <math.h> int deal(char s[],int n);//函数解决 int mai…… 题解列表 2018年07月14日 0 点赞 0 评论 618 浏览 评分:0.0
觉得大佬们写的好长呀 ( 可 AC ) (C语言代码) 摘要:解题思路: 用'.'分隔字符串,将字符串变为整数,判断是否处于0到255之间,如果处于,记录个数加一; 循环结束之后,判断符合ip条件的整数…… 题解列表 2018年07月28日 4 点赞 2 评论 388 浏览 评分:0.0
IP判断 C语言 mirage解题记录 摘要:解题思路:1.判断字符串中有无 非数字 且 非 . 2.以 . 为分割符分为四组字符串3.每组字符串转化为 int 判断大小参考代码:#include<stdio.h> #include<std…… 题解列表 2018年08月04日 17 点赞 2 评论 400 浏览 评分:0.0
IP判断 (C语言代码)短就是精华 摘要:解题思路:说好的输入"End of file"结束,弄的我交了好几遍都是超出限制。 其实还是~Z结束。注意事项: 学多点函数才是解题的好帮手。 函数sscanf()和scanf…… 题解列表 2018年08月06日 5 点赞 3 评论 357 浏览 评分:0.0
IP判断 (C++代码) 摘要:解题思路: 该题已经给出IP合法的具体形式,因为A,B,C,D都是[0,255]的数字,所以我们可以用%d进行输入(k = scanf("%d.%d.%d.%d", &A, &B, …… 题解列表 2018年10月08日 0 点赞 0 评论 528 浏览 评分:0.0
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;…… 题解列表 2018年10月26日 0 点赞 0 评论 595 浏览 评分:0.0