1111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int ch(int t){ if(t%2!=0) return 1; else r…… 题解列表 2022年08月06日 0 点赞 0 评论 413 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要: ```cpp #include #include using namespace std; int main() { string str; int cn…… 题解列表 2022年08月06日 0 点赞 0 评论 598 浏览 评分:9.9
1743: 大整数排序 (string数组,sort自定义) 摘要:```cpp #include using namespace std; string num[10005];//利用string进行大数存储 int n; bool cmp(string …… 题解列表 2022年08月06日 0 点赞 0 评论 476 浏览 评分:0.0
C# 2021: 坐标排序 摘要:```cpp #include using namespace std; struct fun { int x; int y; int z; }s[10000]…… 题解列表 2022年08月06日 0 点赞 0 评论 889 浏览 评分:0.0
大佬们看看我的哪里有问题,为什么一直答案错误 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int isprime(int x){ if(x<2) return 0; if(x==2) return 1; for(int j=…… 题解列表 2022年08月06日 0 点赞 1 评论 205 浏览 评分:0.0
SinzoL--题解 1676: 数据结构-链表的基本操作 摘要:####好久没写了,今天试着写一下 ####我是靠自己的理解来写的,所以极有可能会出现一些时候处理得复杂了或不规范的情况 我们先来定义一下所需函数: ```cpp void show(note…… 题解列表 2022年08月05日 0 点赞 0 评论 383 浏览 评分:0.0
编写题解 1033: [编程入门]自定义函数之字符提取(pythonj的简单题解!) 摘要:解题思路:运用列表的方法可以轻易的解决,加上两个循环注意事项:要了解每个函数的原理并熟练运用、、、、参考代码:ls=[] //定义一个空列表for i in range(3): …… 题解列表 2022年08月05日 0 点赞 0 评论 326 浏览 评分:7.0
利用函数来解决素数 摘要:解题思路:首先应明确什么是素数,素数就是除了1和它本身以外不再有其他因数,且规定1不是素数,有了理论的支撑我们就可以写程序了。同样我们可以通过试数来去解决这个问题,这个就不一一阐述了。我们可以通过一个…… 题解列表 2022年08月05日 0 点赞 0 评论 401 浏览 评分:9.1
蓝桥杯算法提高VIP-删除数组中的0元素简单好懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],i,ans=0; scanf("%d",&n); for(i=0;i<n;i++) s…… 题解列表 2022年08月05日 0 点赞 0 评论 375 浏览 评分:0.0
11111111111111111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:int n,a[10001]; int sum=0; scanf("%d",&n); for(int i=0;i<n;i++) scanf("%d",&a[i]); fo…… 题解列表 2022年08月05日 0 点赞 0 评论 401 浏览 评分:0.0