The 3n+1 problem 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;long long len(long long n)…… 题解列表 2022年02月04日 0 点赞 0 评论 313 浏览 评分:0.0
【露离】编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:两行搞定注意事项:参考代码:a=[i for i in input().split()]print(' '.join(a[::-1]))…… 题解列表 2022年02月04日 0 点赞 0 评论 316 浏览 评分:0.0
水仙花(这题可以偷懒,三位的水仙花数就四个) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; if(m==153||m==…… 题解列表 2022年02月04日 0 点赞 0 评论 346 浏览 评分:0.0
蓝桥杯算法提高VIP-素数求和(不用一个一个枚举,解决时间超限问题) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ inline int sushu(int i);//使用(inl…… 题解列表 2022年02月04日 0 点赞 0 评论 273 浏览 评分:0.0
Hifipsysta-1140-C语言训练-求车速(C++代码)字符串转换法 摘要:```cpp #include #include using namespace std; bool is_symmetry(int n){ bool flag = false;…… 题解列表 2022年02月04日 0 点赞 0 评论 511 浏览 评分:0.0
编写题解 1995: 画三角形 摘要:```python while True: n=int(input()) for i in range(1,n+1): print(('/\\'*i).cent…… 题解列表 2022年02月04日 0 点赞 0 评论 485 浏览 评分:9.9
Hifipsysta-1112-C语言考试练习题_一元二次方程(C++代码)求根公式法 摘要: ```cpp #include #include using namespace std; int main(){ double a,b,c,result; cin…… 题解列表 2022年02月04日 0 点赞 0 评论 368 浏览 评分:0.0
Hifipsysta-1145-C语言训练-自由落体问题(C++代码) 摘要:```cpp #include #include using namespace std; double journey(double t){ double result; …… 题解列表 2022年02月04日 0 点赞 0 评论 327 浏览 评分:0.0
最大车牌——(非常简单的解法) 摘要:什么都不用说了,因为太简单了 c++直接来一个sort ```c++ #include using namespace std; int main() { int n; …… 题解列表 2022年02月04日 0 点赞 0 评论 669 浏览 评分:9.9
Hifipsysta-1144-C语言训练-自守数问题(C++)字符串匹配法 摘要: ```cpp #include #include #include #include using namespace std; bool is_self_hold(long n){…… 题解列表 2022年02月04日 0 点赞 0 评论 425 浏览 评分:0.0