1116: IP判断(python) 摘要:解题思路:1、EOF即为"End of file"缩写2、四个整数中不允许有前导零存在:即当数字长度大于一位时(0是可以的),第一位为0的数都是含有前导零的数参考代码:while True: t…… 题解列表 2023年01月17日 0 点赞 0 评论 550 浏览 评分:9.9
链表删除练习 摘要:解题思路:此题用c++解答相对简单便捷,不得不说stl还是牛注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ list<…… 题解列表 2023年01月17日 0 点赞 0 评论 295 浏览 评分:0.0
链表之节点删除 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int id,score; map<int,i…… 题解列表 2023年01月18日 0 点赞 0 评论 287 浏览 评分:0.0
明明的随机数(水题) 摘要:```c #include int main(){ int n,i,j,k=0,a[101],b[101],t; scanf("%d",&n); for(i=0;i…… 题解列表 2023年01月18日 0 点赞 0 评论 306 浏览 评分:9.9
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 279 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int num[10]; int i, t = 10, j; for (i = 0;…… 题解列表 2023年01月18日 0 点赞 0 评论 261 浏览 评分:0.0
数列(水题,测试数据有问题) 摘要:```c #include long long power(int k,int j){ long long ans=1; while(j){ ans*=k; j--; }…… 题解列表 2023年01月18日 0 点赞 0 评论 432 浏览 评分:9.9
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; while(scanf("%d",&n)!=E…… 题解列表 2023年01月18日 0 点赞 0 评论 286 浏览 评分:0.0
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 213 浏览 评分:0.0
1244: 破解简单密码 摘要:```cpp #include using namespace std; int main() { string s; while(cin>>s) { …… 题解列表 2023年01月18日 1 点赞 0 评论 409 浏览 评分:9.9