python版小白易懂解法 摘要:解题思路:#循环长度,一个数按照一定的规则转换后成为1所需的“步骤数”#题目所求,输入x到输入y之间所有数的循环长度中最大的一个注意事项:输入的两数x,y的大小不确定参考代码:while True: …… 题解列表 2022年09月12日 0 点赞 0 评论 171 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:求最大循环长度注意事项:参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){int m,n;whi…… 题解列表 2018年08月02日 0 点赞 0 评论 346 浏览 评分: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 评论 238 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { long long int m,n,i,j,s,max,t; while(scanf("%…… 题解列表 2017年12月14日 0 点赞 0 评论 634 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int s1(int k)//求m->n中每个整数的最大循环长度 { int sum=0; while(k!=1){ …… 题解列表 2020年12月12日 0 点赞 0 评论 257 浏览 评分:0.0
WU-The 3n + 1 problem (C语言代码) 摘要:参考代码:#include<stdio.h> int fenjie(int a) { int i=0; while(a!=1) { if(a%2==0) { a=a/2;…… 题解列表 2017年12月17日 1 点赞 0 评论 750 浏览 评分: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 评论 220 浏览 评分:0.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 点赞 0 评论 232 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ int i=1; while(n!=1) { if(n%2==0) n=n/2; else …… 题解列表 2023年11月03日 0 点赞 0 评论 83 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:```cpp #include using namespace std; int res(int n); int main() { int a,b; int flag = 0…… 题解列表 2020年04月19日 0 点赞 0 评论 196 浏览 评分:0.0