1116:IP判断;(用了goto循环) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ char s[30],a[10],b[1…… 题解列表 2022年11月13日 0 点赞 0 评论 93 浏览 评分:0.0
IP判断,逐项判断思路清晰,变量少 摘要:解题思路: 没有说输入多少串字符串结束,结束条件是当输入End of file时结束程序 “End of file”这个字符串中间有空格,在while()中采用gets获取…… 题解列表 2022年09月18日 0 点赞 0 评论 189 浏览 评分:9.9
1116: IP判断(c++代码) 摘要:```cpp #include #include using namespace std; int main() { int q,len,t; string s; …… 题解列表 2022年09月11日 0 点赞 0 评论 190 浏览 评分:9.9
沸羊羊 C# 1116: IP判断 摘要:```cpp #include using namespace std; int main() { int a[4]={0}; string s; while(cin>>…… 题解列表 2022年08月10日 0 点赞 0 评论 136 浏览 评分:0.0
小南解题--ip判断--62ms 摘要:'''2022年03月19日 19:34:06.219zgn946''' #循环出[0,255]范围的列表aa=[str(ii) for ii in r…… 题解列表 2022年06月01日 0 点赞 0 评论 104 浏览 评分:0.0
编写题解 1116: IP判断 摘要:解题思路:注意事项:参考代码:while True: s=input() if s=='End of file': break a,b,c,d=s.sp…… 题解列表 2022年04月24日 0 点赞 0 评论 317 浏览 评分:0.0
1116: IP判断(异常 boolean标记) 摘要:```java 运用try catch 进行判断,因为题目要求必须要以数字开头,所以切分后的字符串只有可以转换成为int类型和不能转换为int类型两种,当不能转换的时候就会报错,就可以用try ca…… 题解列表 2022年04月10日 0 点赞 0 评论 365 浏览 评分:9.9
C++ 究极三目运算符 摘要:解题思路:读入字符串并判断是否符合题意。注意事项:没什么,就是想尝试一下最短代码。参考代码:#include<cstring>#include<stdio.h>int main(){ int …… 题解列表 2022年04月06日 0 点赞 0 评论 153 浏览 评分:0.0
纯纯小白做题家-直接上代码 摘要:解题思路://scanf函数的机制,scanf不同于C++里的cin,cin在遇到与变量类型不一致的字符时会自动跳过,往后面寻找符合类型的,而scanf则是遇到//不匹配的则直接结束执行。举个例子,i…… 题解列表 2022年03月25日 1 点赞 0 评论 153 浏览 评分:0.0
IP判断——简单的字符判断和字符转数字操作结合 摘要:话不多说,上代码和注释参考代码:#include<stdio.h>#include<string.h>int main(){ char a[30]={0}; while(gets(a)) { if(…… 题解列表 2022年03月20日 0 点赞 0 评论 170 浏览 评分:0.0