题解 1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cstdio>using namespace std;int main(){ …… 题解列表 2022年01月27日 0 点赞 0 评论 175 浏览 评分:0.0
剪格子(DFS+回溯+剪枝) 摘要:```cpp #include #include using namespace std; int n, m; int maze[10][10]; int vis[10][10]; in…… 题解列表 2022年01月27日 0 点赞 1 评论 770 浏览 评分:9.9
简单易懂--邮票组合 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int t = 0; for (int i = 0…… 题解列表 2022年01月27日 0 点赞 0 评论 198 浏览 评分:0.0
较容易理解的解法 摘要:解题思路:总分为45,平均每家15,所以a+b=6,c+d=7;注意事项:参考代码:#include<iostream>using namespace std;int add(int a, int b…… 题解列表 2022年01月27日 0 点赞 0 评论 169 浏览 评分:0.0
优质题解 Hifipsysta-1214题- 恺撒密码(C++代码)循环平移法 摘要:解题思路:本题的关键在于构造一个循环平移的表。 分析如下: 1. 'A'的ASCII码值是65,'Z'的ASCII的码值是90。 2. 表长为26,平移位数为'F'-'A'=70-65=5。 …… 题解列表 2022年01月27日 0 点赞 0 评论 615 浏览 评分:6.0
python代码 简要 摘要:解题思路:用公式注意事项:要比较x1,x2大小,不能单纯认为分子有+的一定大参考代码:a,b,c=map(float,input().strip().split())x1=(-1*b+pow(b*b-…… 题解列表 2022年01月26日 0 点赞 0 评论 252 浏览 评分:9.9
抄别人的,没读懂题目,收尾交换.中间倒序 摘要:#include <stdio.h> #include <string.h> void reverse(char* s, int L, int R){ if(L >= R) return…… 题解列表 2022年01月26日 0 点赞 0 评论 131 浏览 评分:0.0
答案错了!!! 摘要:解题思路:两种解法注意事项:参考代码:解法一(正确解法)解法二:正确答案是:18446744073709551615…… 题解列表 2022年01月26日 0 点赞 0 评论 204 浏览 评分:0.0
编程基础]输入输出练习之输出图案 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; scanf("%c",&c); printf(" %c\n",c); …… 题解列表 2022年01月26日 0 点赞 0 评论 175 浏览 评分:0.0