题解列表

筛选

[编程入门]C语言循环移位

摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp……
优质题解

【C语言】数字游戏:从暴力循环到精简代码 - DotcppXF

摘要:【解题思路】        将题目描述的游戏规则转化为数学规律问题,不断优化代码,解决【时间超限】和【数据超范围】两大难点。【1】常规解法(暴力循环求解)        ① 直接按题目描述的规则写代码……

实数的打印

摘要: #include #include #include using namespace std; int main() { floa……

完数的判断(Python)

摘要:解题思路:注意事项:要保证时间限制的情况下不能通过暴力求解参考代码:N = int(input())for i in range(2, N) :    lst_factors = [1]    lim……

编写题解:数的读法【Python】

摘要:解题思路:每四位分开读,具体见代码和注释参考代码:d = {&#39;1&#39;:&#39;yi&#39;, &#39;2&#39;:&#39;er&#39;, &#39;3&#39;:&#39;s……