优质题解 Hifipsysta-1121题-C语言训练-8除不尽的数(C++代码)6个乘法表达式,运算复杂度超级低 摘要:#### 解题思路: 根据题目描述,可以得到6个乘法表达式,或者称为方程式: ```latex \begin{cases} n=8*shang+1&(1)\\ shang = 8*shang…… 题解列表 2022年01月31日 1 点赞 0 评论 1990 浏览 评分:7.5
Hifipsysta-1147题-C语言训练-角谷猜想(C++代码)普通递归法 摘要:```cpp #include using namespace std; int func(int n){ int result; if(n%2==0){ …… 题解列表 2022年01月31日 0 点赞 0 评论 472 浏览 评分:9.9
Hifipsysta-1116题-IP判断(C++代码)字符串转换和排除法 摘要:解题思路: ① 建立一个名为flag的标志变量,默认为true。 ② 遍历字符串的每一个字符,如果不是数字标记flag为false,跳出循环 ③ 如果是数字,就装到子串temp_str里面 ④…… 题解列表 2022年01月31日 0 点赞 0 评论 412 浏览 评分:0.0
Hifipsysta-1136题-C语言训练-求具有abcd=(ab+cd)2性质的四位数(C++代码)字符串转换法 摘要: ```cpp #include #include #include using namespace std; bool is_condition(int n){ strin…… 题解列表 2022年01月31日 0 点赞 0 评论 351 浏览 评分:0.0
Hifipsysta-1156题-C语言训练-阿姆斯特朗数(C++代码)字符串转换法 摘要: ```cpp #include #include #include #include using namespace std; bool is_armstrong(int n){ …… 题解列表 2022年01月31日 0 点赞 0 评论 441 浏览 评分:0.0
Hifipsysta-1152题-C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m)(C++代码)双函数法 摘要:注意事项: ① 使用double类型时,scanf要用"%lf"。 ② sum_fraction的遍历从2开始。 ```cpp #include #include using name…… 题解列表 2022年01月30日 0 点赞 0 评论 331 浏览 评分:0.0
Hifipsysta-1137题-C语言训练-求函数值(C++代码)普通递归法 摘要:```cpp #include using namespace std; int func(int x){ int y=0; if(x==1){ y=1…… 题解列表 2022年01月30日 0 点赞 0 评论 344 浏览 评分:0.0
Hifipsysta-1133题-C语言训练-求1+2!+3!+...+N!的和(C++代码)双函数法 摘要:```cpp #include using namespace std; long long int fact(int n){ long long int prod=1; …… 题解列表 2022年01月30日 0 点赞 0 评论 585 浏览 评分:0.0
Hifipsysta-1122题-C语言训练-亲密数(C++代码)缩小样本空间法 摘要:解题思路: ① 本题如果将A和B写进两个循环同时遍历,运算复杂度会非常高基本在$$O(n^2)$$量级,因此需要考虑的是如何缩小样本空间。 ② 3000以内的任意一个整数都可能成为或者说有资格成为…… 题解列表 2022年01月30日 0 点赞 0 评论 557 浏览 评分:0.0
蓝桥杯算法提高VIP-特殊的质数肋骨(找规律--->打表) 摘要:# 当n为1的时候:答案为2,3,5,7; 当n为2的时候:答案为(可以写暴力看一看,暴力应该可以算到6); 不难发现每次都是在n-1的基础上用1,3,7,9和n-1中每个数进行组合 通过前面…… 题解列表 2022年01月30日 0 点赞 0 评论 612 浏览 评分:9.9