The 3n + 1 problem -题解(C语言代码) 摘要:#include int main() { int x,y,i,cl,tempt,maxCL;// "cl" is circle length while(scanf("…… 题解列表 2020年02月03日 0 点赞 0 评论 228 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:#思路 通过输入获得n1,n2;比较n1,n2的大小;使用for循环获得两数中循环次数的最大值,并输出。再将前面的放进循环中。 #心得 1.可以使用cin作为while的判断条件。例如:whil…… 题解列表 2020年02月02日 0 点赞 0 评论 179 浏览 评分:0.0
The 3n + 1 problem -题解(C语言描述||显示33%错误原因之一) 摘要:```c #include #include int function(int n) { int sum=1; while(n!=1) { if(n%2==0) …… 题解列表 2020年01月31日 0 点赞 0 评论 232 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:```c #include int main() { int n,m; int a,b; while(scanf("%d%d",&n,&m)!=EOF) // 题意是输入俩个…… 题解列表 2019年12月22日 0 点赞 0 评论 411 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:## 常规解法,只需要将数字转为Ascii码,A的为65. ```c #include int cmp(int n){ if (n==1){ printf("A"); }else…… 题解列表 2019年12月20日 0 点赞 0 评论 422 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要: #include #include #include using namespace std; int main() …… 题解列表 2019年12月12日 0 点赞 0 评论 559 浏览 评分:8.0
The 3n + 1 problem -题解(C语言代码)答案错误%33的同学请进 摘要:解题思路: 首先自己已经二刷,又遇到了一些坑,在此总结思考一下 先找思路,就是简单的判断 偶数除2,奇数*3+1 注意事项: 考虑以下几个方面 : 1:给的i,j值可能不是按从小到大的顺序 …… 题解列表 2019年12月11日 0 点赞 6 评论 1063 浏览 评分:9.3
The 3n + 1 problem (C++代码) 摘要:```cpp #include using namespace std; int main() { int x = 1, i, j, t,m=0,k=0,f; while (x ==…… 题解列表 2019年12月05日 0 点赞 2 评论 508 浏览 评分:9.0
The 3n + 1 problem -题解(C语言代码) 摘要:首先,因为这个题目是英文的,所以容我多说几句关于题目的讲解~ 这道题的意思就是输入两个数[i,j],区间内的每个数字,都要进行一系列运算:如果这个数字是偶数,则除以2,如果这个数字是奇数,则乘以3在…… 题解列表 2019年11月21日 0 点赞 1 评论 411 浏览 评分:9.5
The 3n + 1 problem -题解(Java代码) 摘要:```java import java.util.Scanner; /** * The 3n + 1 problem * http://www.dotcpp.com/oj/probl…… 题解列表 2019年11月14日 0 点赞 0 评论 393 浏览 评分:0.0