题解 1026: [编程入门]数字逆序输出(C) 摘要:解题思路:就是个输入输出的考察,没啥好说的,上代码注意不要像我一样,自以为是给数据从大到小排序,输出就好了参考代码:#include<stdio.h> int main(void){ int…… 题解列表 2022年08月08日 0 点赞 0 评论 439 浏览 评分:9.9
可以使用递归的思想输出正反序列 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "math.h"void fun(int p,int a){ if(p==0) return ; if(…… 题解列表 2022年08月08日 0 点赞 0 评论 371 浏览 评分:9.9
#C语言1474——蓝桥杯基础练习VIP-阶乘计算(大数阶乘) 摘要:参考代码:#include<stdio.h> #include<string.h> int main() { long long i,j,n,temp,d=1,carry;//temp…… 题解列表 2022年08月09日 0 点赞 0 评论 428 浏览 评分:9.9
使用实现区间查询最小值,和的线段树 摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 1000010#define INF 1000010…… 题解列表 2022年08月09日 0 点赞 0 评论 999 浏览 评分:9.9
二级C语言-等差数列 简单小白 摘要:```c #include int main() { int sum=0,i,x=2,n; scanf("%d",&n); for(i=0;i…… 题解列表 2022年08月09日 0 点赞 0 评论 449 浏览 评分:9.9
稍微变化的01背包 摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 2010#define maxm 10010int …… 题解列表 2022年08月09日 0 点赞 0 评论 782 浏览 评分:9.9
这种题还需要看题解吗? 摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001): if i%2==0 and i%3==0 and i%7==0: print(i)…… 题解列表 2022年08月10日 0 点赞 0 评论 550 浏览 评分:9.9
不会简单的写法 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo…… 题解列表 2022年08月10日 0 点赞 0 评论 458 浏览 评分:9.9