1853: 蓝桥杯基础练习-数列排序 摘要:解题思路:注意事项:参考代码: #include<iostream> using namespace std; #include<vector> #include<algorithm> …… 题解列表 2023年09月27日 0 点赞 0 评论 247 浏览 评分:0.0
简单明了的解题法 摘要:解题思路:转置不就是吧(a,b)换成(b,a)么,我直接把循环嵌套输入的i,j倒过来不就实现了么注意事项:参考代码:#include<stdio.h>#include<math.h>int main(…… 题解列表 2023年09月28日 0 点赞 0 评论 333 浏览 评分:0.0
单词倒排(使用 isalpha( ) ) 摘要:参考代码: ```c #include #include #include int main() { char a[1000]; fgets(a,sizeof(a),stdin);…… 题解列表 2023年09月29日 0 点赞 0 评论 191 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int judge(int n) { if (n % 4 == 0 && …… 题解列表 2023年09月29日 0 点赞 0 评论 145 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main() { struct student { string Xue…… 题解列表 2023年09月29日 0 点赞 0 评论 218 浏览 评分:0.0
术式反转 赫 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct _fushu{ int va…… 题解列表 2023年09月30日 0 点赞 0 评论 277 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define maxsize 100typedef struct{ double sco…… 题解列表 2023年09月30日 0 点赞 0 评论 230 浏览 评分:0.0
行程长度编码 摘要:参考代码: ```c #include #include #include int main() { char a[1000]; gets(a); int len=strlen…… 题解列表 2023年09月30日 0 点赞 0 评论 206 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu_node{ int data; struct st…… 题解列表 2023年09月30日 0 点赞 0 评论 181 浏览 评分:0.0
自定义函数之整数处理 摘要:解题思路:用两个变量t1,t2复制数组第一个数和最后一个数,分别以他们为标兵,进行比较,再用新变量n1,n2复制符合条件的下标,再用a[n1/n2]=t1/t2来把对应的原值复制到下标为n1/n2的位…… 题解列表 2023年09月30日 0 点赞 0 评论 139 浏览 评分:0.0