题解 1095: The 3n + 1 problem

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

筛选

1095: The 3n + 1 problem

摘要:```cpp #include using namespace std; int main() { int m,n,max; while(cin>>m>>n) {……

个人思路,随便看看吧

摘要:解题思路:学会列表的相关操作很重要注意事项:参考代码:def fun(n):    l1 = [n]    while n != 1:        if n % 2 == 0:           ……

The 3n + 1 problem (c++)

摘要:解题思路:真的是又长又臭参考代码:#include<iostream>using namespace std;int main(){    long long count = 1;    long l……

The 3n + 1 problem

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,y,max,a,b,rest; while(~scanf("%d %d",&a,&b)) { ……

1095: The 3n + 1 problem

摘要:解题思路:用 while() 每次接收两个数,用 for() 对两个数间所有数进行遍历,并更新最大循环长度。注意事项:测试用例里面有 num1 > num2 的,一开始完全没意识到,卡了很久。参考代码……

The 3n + 1 problem

摘要:解题思路:注意事项:参考代码:def f(x):    c=1    while x!=1:        if x%2==0:            x=x//2        else:     ……

题目化解+操作数函数+赋初值与输入输出解释

摘要:题目简化:1.对于n ,如果n是偶数,则除以2 ;如果n是奇数,乘以3再加1 。这会产生 从n到1的 操作次数。(如n=1时,操作次数为1 ,即 有1个数) 2.对于 每一对输入的整数i和j , 要……

题目看了半天就我英语跟屎一样吗

摘要:解题思路:定义函数为求x循环体的长度,因为输入一行输出一行,利用while注意事项:参考代码:def chang(x):    a=0    while x>1:        if x%2==0: ……