题解 1095: The 3n + 1 problem

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

筛选

求哪里错了??

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

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

摘要:解题思路:就是扫雷游戏规则注意事项:一定要注意格式,一定,一定!!!!!参考代码:#include<iostream>#include<cstdio>using namespace std;int a……

The 3n + 1 problem (Java代码)

摘要:解题思路:    1、这个题的解题思路,很简单。基本已经写出来了。很容易就写好。但是有几个小细节却很容易出错注意事项:    1、题目,并没有说 j > i ,那么我就得写一个判断来确定谁大。让 j ……

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

摘要:解题思路:将每一个区间内的数进行运算,找出其中循环次数最多的那一个注意事项:/*1 41 4 84 14 1 85 15 1 86 16 1 9 7 17 1 17*/先后输入的俩个数需要比大小让小的……