The 3n + 1 problem -题解(C语言代码) 摘要:本题,我想最坑的地方就是那个比较两个输入数之间的大小了吧,而且还要以原顺序输出,所以一定要注意,不能只考虑到输如1 10,输出1 10 20,如果输入10 1的情况,也要输出10 1 20哦!下面呢,…… 题解列表 2019年11月07日 0 点赞 1 评论 1352 浏览 评分:9.9
The 3n + 1 problem -题解(C语言代码) 摘要:我是看了评论才注意到i,j输出的问题。但是我还有一个问题,输入1和1000000就得不到答案了,还想请教各位大佬。 ```c #include int fun(int m) { …… 题解列表 2019年10月28日 0 点赞 0 评论 224 浏览 评分:0.0
**你是不是也错了33%!?** 摘要::sweat_smile:杭电题的细节要求绝对是top,***注意题目上并没有说i>j。错33%就在这错着。*** ```cpp #include using namespace std; t…… 题解列表 2019年10月21日 0 点赞 0 评论 360 浏览 评分:6.0
The 3n + 1 problem -题解(C语言代码) 摘要:#### 1095: The 3n + 1 problem [原题连接:The 3n +1 problem](https://www.dotcpp.com/oj/problem1000.html "…… 题解列表 2019年10月16日 0 点赞 8 评论 928 浏览 评分:9.3
The 3n + 1 problem -题解(C语言代码) 摘要:#### 1095: The 3n + 1 problem [原题连接:The 3n +1 problem](https://www.dotcpp.com/oj/problem1000.html "…… 题解列表 2019年10月16日 0 点赞 0 评论 222 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:#还在为那33%发愁吗??注意i和j的大小关系! #include using namespace std; int base(long n)//基础函数,用于判断奇偶,便于递归调用…… 题解列表 2019年09月06日 0 点赞 0 评论 1231 浏览 评分:8.0
The 3n + 1 problem -题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { long long begin, end; while (cin >>…… 题解列表 2019年07月19日 0 点赞 0 评论 265 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:#include int main() { int i,j,k,t,n; while(scanf("%d%d",&i,&j)==2)//当i,j都录入成功时返回值为2 { int…… 题解列表 2019年07月15日 0 点赞 0 评论 230 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:相信很多人踩雷在了 当输入的n>m的情况上了参考代码:#include <stdio.h>#include <string.h>int main(){ int n,m,i,…… 题解列表 2019年04月18日 0 点赞 0 评论 218 浏览 评分:0.0
The 3n + 1 problem (Python代码) 摘要:解题思路: 这道题真的是....无法克说.... 太坑了吧也.................. 上图: 注意事项: 1. 输入 题解列表 2019年04月17日 1 点赞 2 评论 1518 浏览 评分:9.4