IP判断 (C语言代码) 摘要:#include <stdio.h>#include <string.h>int main(){ int i=0,j,flag=1,s=0; char a[1000][31]; …… 题解列表 2018年02月11日 0 点赞 0 评论 717 浏览 评分:0.0
IP判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:int Jude(char *s){ int x=0; for(;*s;s++) { if(*s=='.') x=0; else if(*s>=&…… 题解列表 2017年11月25日 0 点赞 0 评论 538 浏览 评分:0.0
IP判断 (C++描述、正则表达式社会写法,不过貌似不支持) 摘要:解题思路:注意事项:娱乐一下就好,过不了的参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <regex> …… 题解列表 2018年10月27日 0 点赞 0 评论 417 浏览 评分:0.0
IP判断-题解(C语言代码) 摘要:#include <stdio.h> #include <string.h> #include <stdlib.h> int judge(char a[]) { int i,j=0,m;…… 题解列表 2020年07月20日 0 点赞 0 评论 211 浏览 评分:0.0
IP判断 (C++代码) 摘要:解题思路:注意事项: 坑爹的题目参考代码:#include<iostream>#include<string>#include<algorithm>#include<string.h>using na…… 题解列表 2018年11月21日 0 点赞 0 评论 584 浏览 评分:0.0
IP判断——python 摘要:解题思路:注意事项:参考代码:while True: try: L = list(map(str,input().split('.'))) s = 0…… 题解列表 2023年03月26日 0 点赞 0 评论 63 浏览 评分:0.0
IP判断-题解(C语言代码) 摘要:```c #include"stdio.h" #include"string.h" int pd(char str[]) { int j,sum=0,len; len=strlen(s…… 题解列表 2019年06月08日 1 点赞 0 评论 344 浏览 评分:0.0
IP判断 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int change(char *s){ int m=0; if(strlen(s)==1) {…… 题解列表 2019年02月11日 0 点赞 0 评论 620 浏览 评分:0.0
ip判断记录副本 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>int main(){ int n,a,b,c,d; char ch[20]; while(1) { …… 题解列表 2022年02月26日 0 点赞 0 评论 120 浏览 评分:0.0
IP判断-题解(C语言代码)超简单写法 摘要: 用isalpha筛掉带字母的地址 再用isdigit逐次数组元素判断大小是否超过255或者小于0 如果点后面三个元素都是数字就判断大小是否超过255 #include v…… 题解列表 2019年11月29日 0 点赞 0 评论 349 浏览 评分:0.0