C++训练-8除不尽的数,--------直接输出答案不就可以了 摘要:解题思路:直接输出答案就可以了,注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout << 1993 << en…… 题解列表 2022年01月27日 0 点赞 4 评论 732 浏览 评分:7.3
这题有个小细节--(两种写法) 摘要:```cpp //第一种写法,可运行 #include #include #include #include #include using namespace std; int mai…… 题解列表 2022年01月27日 0 点赞 0 评论 339 浏览 评分:8.0
按部就班--计算器 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, b; char op; doub…… 题解列表 2022年01月27日 0 点赞 0 评论 341 浏览 评分:9.9
剪格子(DFS+回溯+剪枝) 摘要:```cpp #include #include using namespace std; int n, m; int maze[10][10]; int vis[10][10]; in…… 题解列表 2022年01月27日 0 点赞 1 评论 793 浏览 评分:9.9
简单易懂--邮票组合 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int t = 0; for (int i = 0…… 题解列表 2022年01月27日 0 点赞 0 评论 224 浏览 评分: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 评论 204 浏览 评分:0.0
优质题解 Hifipsysta-1214题- 恺撒密码(C++代码)循环平移法 摘要:解题思路:本题的关键在于构造一个循环平移的表。 分析如下: 1. 'A'的ASCII码值是65,'Z'的ASCII的码值是90。 2. 表长为26,平移位数为'F'-'A'=70-65=5。 …… 题解列表 2022年01月27日 0 点赞 0 评论 644 浏览 评分:6.0
答案错了!!! 摘要:解题思路:两种解法注意事项:参考代码:解法一(正确解法)解法二:正确答案是:18446744073709551615…… 题解列表 2022年01月26日 0 点赞 0 评论 238 浏览 评分:0.0