1850: 判断第几天 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string str; in…… 题解列表 2023年09月27日 0 点赞 0 评论 255 浏览 评分:0.0
1853: 蓝桥杯基础练习-数列排序 摘要:解题思路:注意事项:参考代码: #include<iostream> using namespace std; #include<vector> #include<algorithm> …… 题解列表 2023年09月27日 0 点赞 0 评论 342 浏览 评分:0.0
简单明了的解题法 摘要:解题思路:转置不就是吧(a,b)换成(b,a)么,我直接把循环嵌套输入的i,j倒过来不就实现了么注意事项:参考代码:#include<stdio.h>#include<math.h>int main(…… 题解列表 2023年09月28日 0 点赞 0 评论 444 浏览 评分:0.0
单词倒排(使用 isalpha( ) ) 摘要:参考代码: ```c #include #include #include int main() { char a[1000]; fgets(a,sizeof(a),stdin);…… 题解列表 2023年09月29日 0 点赞 0 评论 289 浏览 评分:0.0
结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int judge(int n) { if (n % 4 == 0 && …… 题解列表 2023年09月29日 0 点赞 0 评论 234 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main() { struct student { string Xue…… 题解列表 2023年09月29日 0 点赞 0 评论 309 浏览 评分:0.0
术式反转 赫 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct _fushu{ int va…… 题解列表 2023年09月30日 0 点赞 0 评论 399 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define maxsize 100typedef struct{ double sco…… 题解列表 2023年09月30日 0 点赞 0 评论 329 浏览 评分:0.0
行程长度编码 摘要:参考代码: ```c #include #include #include int main() { char a[1000]; gets(a); int len=strlen…… 题解列表 2023年09月30日 0 点赞 0 评论 299 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu_node{ int data; struct st…… 题解列表 2023年09月30日 0 点赞 0 评论 297 浏览 评分:0.0