编写题解 1116: IP判断 摘要:```cpp #include #include #include using namespace std; bool judge(string str) { string st…… 题解列表 2024年11月28日 2 点赞 0 评论 134 浏览 评分:7.3
1116: IP判断 java基础语法 摘要:import java.util.Scanner; public class Main { public static boolean ipValid(String ip) { …… 题解列表 2024年11月21日 0 点赞 0 评论 68 浏览 评分:0.0
应该行数算少然后比较清晰了 摘要:解题思路:调用sscanf函数注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdlib.h>int is_ip(char *ip_…… 题解列表 2024年10月29日 0 点赞 0 评论 116 浏览 评分:9.9
编写题解 1116: IP判断(正则表达式)有详细解释 摘要:我用的是正则表达式,可以参考下面图片的解释 ![](/image_editor_upload/20240907/20240907120601_82763.png)![](/image_editor_…… 题解列表 2024年09月07日 0 点赞 0 评论 62 浏览 评分:9.9
IP地址-python-正则表达式 摘要:解题思路:正则表达式区间0-9 \d 10-99 [1-9]\d 100-199 1\d{2} 200-249 2[0-4]\d …… 题解列表 2024年08月11日 0 点赞 0 评论 151 浏览 评分:0.0
IP判断(sscanf格式化读入) 摘要:解题思路:sscanf注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { cha…… 题解列表 2024年08月10日 0 点赞 0 评论 74 浏览 评分:0.0
IP判断 简单易懂(C语言代码) 摘要:```c #include #include #include #define lenth 256 // 检查给定的字符串是否为有效的IPv4地址 // 参数s: 表示IPv4地址的字符串…… 题解列表 2024年08月10日 1 点赞 0 评论 295 浏览 评分:10.0
基于scanf输入判断的优化和补充 摘要:解题思路:使用fgets函数替换gets函数,避免缓冲区溢出。使用sscanf函数格式化输入。注意事项:1.gets函数由于它的不安全已经不在使用,因此使用fgets函数进行替换。2.在进行多个字符串…… 题解列表 2024年08月05日 0 点赞 0 评论 115 浏览 评分:0.0
1116IP判断(sscanf函数直接秒杀) 摘要:解题思路:注意事项:关于sscanf函数,因为很少见,而且很少用到,但恰好这里就可以用到,鄙人对于它的使用也仅仅只是初级的,所以需要大家自己去学习,去了解!参考代码:#include<iostream…… 题解列表 2024年06月11日 0 点赞 0 评论 83 浏览 评分:0.0
无聊的星期六 摘要:解题思路:正则就不用了。注意事项:参考代码:import sys for line in sys.stdin: if line=="End of file": exit(…… 题解列表 2024年04月20日 0 点赞 0 评论 99 浏览 评分:0.0