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