核心:通过逆向赋值实现数值后移 摘要:```c #include int main() { int n[10]={0},number; //number为我们要插入的数字 for(…… 题解列表 2022年12月03日 0 点赞 0 评论 428 浏览 评分:0.0
编写题解 2796: 求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int i = 0; int m; long int sum = 0; double ave…… 题解列表 2022年12月03日 0 点赞 0 评论 763 浏览 评分:9.3
利用for循环求解编写题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int i = 0; int m; int sum = 0; double aver = 0.0;…… 题解列表 2022年12月02日 0 点赞 0 评论 436 浏览 评分:0.0
一种超简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,w=1; int t; int i,j; int x,y; sca…… 题解列表 2022年12月02日 0 点赞 0 评论 201 浏览 评分:0.0
一种超简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; int t; int i,j; int x,y; scanf("…… 题解列表 2022年12月02日 0 点赞 0 评论 171 浏览 评分:0.0
一种超简单标准的枚举方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ enum play{lose=-1,equality,win} result; int a,b; …… 题解列表 2022年12月02日 0 点赞 0 评论 197 浏览 评分:0.0
C语言 统计字符& 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define LONG 100int main(){ char c[LONG]…… 题解列表 2022年12月02日 0 点赞 0 评论 505 浏览 评分:9.9
时间复杂度的O(n)算法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 100010#define maxk 100010//0 …… 题解列表 2022年12月02日 0 点赞 0 评论 315 浏览 评分:9.9
数的划分(dp) 摘要:解题思路:动态规划 状态方程:dp[i][j]:表示数字 i,被分解为 j份 的方案总数 因为分解的每一份不能为空,则先将每一份都分配 1,剩余数值为 i-j ,再将 i-j 分为 1 份,2份,…… 题解列表 2022年12月02日 0 点赞 0 评论 356 浏览 评分:9.9
时间复杂度O(n)的算法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 100010//−100000≤ Ai ≤100000ty…… 题解列表 2022年12月02日 0 点赞 0 评论 225 浏览 评分:9.9