1111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t=1,sum=0; scanf("%d",&n); for(int i=1;i<=n/2;i++)…… 题解列表 2022年08月08日 0 点赞 0 评论 420 浏览 评分:0.0
11111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); for(int i=1;i<=n;i++) { if(n%i==…… 题解列表 2022年08月08日 0 点赞 0 评论 351 浏览 评分:0.0
11111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); for(int i=a;i<=b;i+…… 题解列表 2022年08月08日 0 点赞 0 评论 542 浏览 评分:0.0
新手,希望大佬能看看我的短处 摘要:解题思路:注意事项:参考代码:#include <stdio.h>char* liu_0(char* arr){for(int i=0;i<4;i++){printf("%c",arr[i]);for…… 题解列表 2022年08月08日 0 点赞 0 评论 323 浏览 评分:0.0
蓝桥杯2017年第八届真题-发现环(并查集, DFS) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e5 + 7;int p[N];bool vis[N]…… 题解列表 2022年08月08日 0 点赞 0 评论 455 浏览 评分:0.0
1059: 二级C语言-等差数列 摘要:解题思路:sum=2+5+8+11+14+…,输入正整数n,求sum的前n项和。根据题目要求,我们需要 元素个数 元素各值 数列之和 三个量 以及通项公式的计算(笑)注意事项:当for语句中i…… 题解列表 2022年08月08日 0 点赞 0 评论 416 浏览 评分:0.0
蓝桥杯2017年第八届真题-合根植物(C++) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e6 + 5;int p[N];int getFath…… 题解列表 2022年08月08日 0 点赞 0 评论 412 浏览 评分:0.0
1052: [编程入门]链表合并 摘要:解题思路:注意事项:结构体使用,结构体指针参考代码:#include<stdio.h> #include<malloc.h> typedef struct Node { int sn…… 题解列表 2022年08月08日 0 点赞 0 评论 335 浏览 评分:0.0
C# 蓝桥杯算法提高VIP-扑克排序 摘要:```cpp #include using namespace std; struct fun { char qw; char qe; int qa; int qs; }; …… 题解列表 2022年08月08日 0 点赞 0 评论 510 浏览 评分:0.0
1031: [编程入门]自定义函数之字符串反转(C) 摘要:解题思路:a=123abc ->exchang()->b=cba321->strcat()注意事项:b[j] = '\0';参考代码:#include<stdio.h> #inclu…… 题解列表 2022年08月08日 0 点赞 0 评论 263 浏览 评分:0.0