蓝桥杯算法训练VIP-数的统计 C++ map 摘要:# map 有序容器 ```c++ #include #include #include #include using namespace std; const int N = 1e5+…… 题解列表 2023年07月30日 0 点赞 0 评论 363 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> typedef struct num{ int real; int imag; …… 题解列表 2023年07月30日 0 点赞 0 评论 273 浏览 评分:0.0
1113: C语言考试练习题_保留字母 摘要:##题目1113: C语言考试练习题_保留字母 **解题思路:输入一个字符串,一个个判断是否为字母,如果符合条件就输出** ```cpp #include using namespace st…… 题解列表 2023年07月30日 0 点赞 0 评论 263 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct student{ int id; int score; …… 题解列表 2023年07月30日 0 点赞 0 评论 390 浏览 评分:0.0
蓝桥杯算法提高VIP-最大最小值 摘要:# max_element 和 min_element ```c++ #include #include #include #include using namespace std; i…… 题解列表 2023年07月31日 0 点赞 0 评论 384 浏览 评分:0.0
多组输入的循环方式解决 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main() { int n; scanf("%d", &n);…… 题解列表 2023年07月31日 0 点赞 0 评论 341 浏览 评分:0.0
1005:[编程入门]温度转换 摘要:解题思路:输入华氏温度,输出摄氏温度。注意事项:1,取两位小数的写法。2,原公式乘号省略。3,注意题目中要求的输出形式。参考代码:#include<stdio.h>int main(){ flo…… 题解列表 2023年07月31日 0 点赞 0 评论 336 浏览 评分:0.0
简单调用函数解决问题 摘要:参考代码:# include <stdio.h># include <string.h> //使用strlen()计算数组长度需添加此头文件void abc(char str[])…… 题解列表 2023年07月31日 0 点赞 0 评论 319 浏览 评分:0.0
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>void sort(int a[100],int len){ int…… 题解列表 2023年08月01日 0 点赞 0 评论 249 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b[4]={0,0,0,0}; char a[200]; for (int i = 0; i != 2…… 题解列表 2023年08月01日 0 点赞 0 评论 285 浏览 评分:0.0