题解 1095: The 3n + 1 problem

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

The 3n + 1 problem (C++代码)

摘要:解题思路:求最大循环长度注意事项:参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){int m,n;whi……

此解可AC (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i, j, k, count = 1, max = 0, t; while (scanf("%d %d"……

The 3n + 1 problem (C语言代码)

摘要:解题思路:注意事项:注意输入的i j的大小不一定谁大谁小,不要惯性思维先把i j输出了再说,因为题目要求输出顺序与输入相同注意max变量的复原参考代码:#include <stdio.h>#inclu……

The 3n + 1 problem (Java代码)

摘要:解题思路:先写一个简单的静态方法来判断每个数的次数,再写一个主方法来输入输出就ok啦注意事项:就是判断输入两个数的时候要判断下大小问题就好啦,我的这个和那个对的有什么区别,为啥我的就是错误 知道的告诉……

The 3n + 1 problem (C++代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<algorithm>#include<math.h>using namespace……

The 3n + 1 problem (Java代码)

摘要:解题思路:注意事项:1.注意n*3可能int型不够用,用long2.输入的时候可能a比b大,所以要换位置代入函数。参考代码:import java.util.Scanner; public cl……

The 3n + 1 problem (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static long cishu(long n){ ……

The 3n + 1 problem (C++代码)

摘要:解题思路:为了采用规范化编程,建议把那个3n+1猜想写进一个函数,返回值是每个传入的数的循环长度。这个题思路也很简单,就是输入对于每次输入的i,j,先输出i,j,然后判断一下i和j的大小,始终让i保存……