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
c语言巧妙解答 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[40]; int i,n; while(~s…… 题解列表 2021年12月13日 0 点赞 0 评论 180 浏览 评分:0.0
IP判断 (C语言代码)(软比特的贝尔的笨方法) 摘要:解题思路: 笨方法,即考虑到所有错误的情况注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#define…… 题解列表 2019年02月27日 0 点赞 0 评论 474 浏览 评分: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语言代码) 摘要:解题思路: 以'.'为循环判断条件,循环三次,将前三个准换成相应的数字,判断是否合法,如果是字母则退出循环;再根据标志Y判断是否进入循环判断最后一个数合法.注意事项:参考代码:#…… 题解列表 2017年12月10日 0 点赞 0 评论 742 浏览 评分: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语言代码) 摘要:#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
IP判断 (C语言代码) 摘要:解题思路:利用ASCII解题注意事项:参考代码:#include"stdio.h" #include"string.h" int main() { char ch[30];…… 题解列表 2018年11月20日 0 点赞 0 评论 380 浏览 评分:0.0
基于scanf输入判断的优化和补充 摘要:解题思路:使用fgets函数替换gets函数,避免缓冲区溢出。使用sscanf函数格式化输入。注意事项:1.gets函数由于它的不安全已经不在使用,因此使用fgets函数进行替换。2.在进行多个字符串…… 题解列表 2024年08月05日 0 点赞 0 评论 115 浏览 评分:0.0
IP判断——简单的字符判断和字符转数字操作结合 摘要:话不多说,上代码和注释参考代码:#include<stdio.h>#include<string.h>int main(){ char a[30]={0}; while(gets(a)) { if(…… 题解列表 2022年03月20日 0 点赞 0 评论 171 浏览 评分:0.0