蓝桥杯算法训练VIP-学生成绩-题解(C语言代码) 摘要:#include using namespace std; int n; typedef struct student { string a; string b; int c; i…… 题解列表 2020年01月15日 0 点赞 0 评论 697 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年01月15日 0 点赞 0 评论 467 浏览 评分:0.0
蛇行矩阵 问题分析,代码简洁(C++代码) 摘要:思路分析: 每行第一个数字的规律:F(n)=n*(n-1)/2+1 一行中数字的规律:S(m)=(F(n)+m+n-1)*m/2 代码: 第一遍写的比较乱 ```cpp //n:输入…… 题解列表 2020年01月15日 0 点赞 0 评论 616 浏览 评分:0.0
校门外的树-题解(C语言代码) 摘要:```c #include int arr[10001]={0}; //初始化数组为0,设0为未砍的树 int main(){ int L,M,a,b,count=0; sc…… 题解列表 2020年01月15日 0 点赞 0 评论 500 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言-swich-代码) 摘要:```c #include #include"string.h" int main() { char ch[100]; gets(ch); int h=strlen(ch),i;…… 题解列表 2020年01月16日 0 点赞 0 评论 499 浏览 评分:0.0
[编程入门]自定义函数处理最大公约数与最小公倍数-题解(C语言代码) 摘要:```c #####include int main(){ int temp,a,b,num,num1; scanf("%d %d",&a,&b); if(b>a){ temp…… 题解列表 2020年01月16日 0 点赞 0 评论 956 浏览 评分:0.0
[编程入门]自定义函数之字符串反转-题解(C语言代码) 摘要:```c #include #include int main() { char a[100]; char b[20]; int i,j,k; char…… 题解列表 2020年01月16日 0 点赞 0 评论 490 浏览 评分:0.0
超级简单的方法,代码行数用手指都能数出来 摘要:**搞清楚思路就行,就是两个字符串中间加一个数字对应的字母** import java.util.Scanner; public class H { //思路各个字…… 题解列表 2020年01月16日 0 点赞 0 评论 613 浏览 评分:0.0
蓝桥杯算法提高VIP-计算器-题解(C++代码) 摘要:#include using namespace std; int n,k; char c[105],d[105]; struct num { int b[7]; }a[10]={{1…… 题解列表 2020年01月16日 0 点赞 0 评论 590 浏览 评分:0.0
蓝桥杯算法训练VIP-集合运算-题解(C++代码)STL标准库 摘要:运用STL标准库的函数,可以进行集合运算 ```cpp //交集(set_intersection) template< class ExecutionPolicy, class Forward…… 题解列表 2020年01月16日 0 点赞 0 评论 581 浏览 评分:0.0