题解列表
1053: 二级C语言-平均值计算
摘要:解题思路:使用数组及for循环注意事项:参考代码:#include<stdio.h>{int a[10]; int sum=0,score=0; for(int i=0;i<10;i++)……
2818:老套路-(除十模十)-C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
void func(long long n);
int main() {
long long a;
scanf("%……
2798:用数组找最大值-《C语言》
摘要:解题思路:注意事项:参考代码:#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#define N 1000
int main(……
2799:不要忘记初始化变量-C语言
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<math.h>
int main()
{
int n;
int a,b,c;
a = 0……
登山-线性动态规划的一种特殊情况
摘要:解题思路:注意事项:参考代码:"""线性动态规划 时间复杂度 N**2除了要考虑上升的情况还要考虑先上升和下降前面一种实现起来很简单对于后面一种 要考虑更多的东西-比如数据重复和数据来源"""num=……
蓝桥杯算法提高VIP-单词个数统计 个人想法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; gets(a); int b=strlen(a),x……
优质题解
题解2758: 打印ASCII码
摘要:# 2758: 打印ASCII码
## 知识点
### 知识点1:强制类型转换
我们都知道,数据类型有整型`int`、浮点型`float`、字符`char`等等。我们可以通过在变量前面加括号,对……