我这个应该是挺好理解的吧 摘要:```cpp #include using namespace std; int main() { int n,m; while(cin>>n>>m)//n…… 题解列表 2023年01月19日 0 点赞 0 评论 136 浏览 评分:0.0
The 3n + 1 problem(水题) 摘要:```c #include int fun(int n){ int cnt=0; do{ if(n%2==0){ n/=2; cnt++; } else…… 题解列表 2023年01月12日 0 点赞 0 评论 107 浏览 评分:9.9
1095: The 3n + 1 problem 摘要:```cpp #include #include using namespace std; int fun(int num) { int count=1; while(n…… 题解列表 2023年01月12日 0 点赞 0 评论 155 浏览 评分:9.9
1095: The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:#includeint asd(int n){ int a; if (n % 2 == 0) { a = 1; } else { a = 0; } return…… 题解列表 2022年12月23日 0 点赞 0 评论 53 浏览 评分:0.0
耗时18ms,好像有点高了,复杂度更达到了O(n^2).能不能更简单一点 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int num1(int n,int m){ if(n>m) swap(n,m…… 题解列表 2022年12月10日 0 点赞 1 评论 68 浏览 评分:9.9
20221124The 3n + 1 problem 摘要:解题思路:注意事项:输入&a,&b不确定其大小参考代码:#include <stdio.h>long len(long n){ long c=1; while(n!=1) { if (n%2==0…… 题解列表 2022年11月24日 0 点赞 0 评论 57 浏览 评分:0.0
【如果你也是“答案错误67”】C语言之判断最长周期 摘要::fa-envelope-o:主要需要注意的就是: 要比较输入的i,j的大小,可以先输入大的值后输入小的值 ```c #include long long int T_num(int num…… 题解列表 2022年11月04日 0 点赞 0 评论 67 浏览 评分:0.0
The 3n + 1 problem(c语言代码) - 解决33%的错误 摘要:注意事项:i,j的输入大小顺序不确定因此要比较i,j并交换i,j要提前打印,如果输入时i>j,交换后,i,j的值就交换了,打印时就出错n = n*3+1可能导致溢出,因此直接将i,j,n全设为long…… 题解列表 2022年10月31日 0 点赞 0 评论 102 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:解题思路:1. 循环次数:一个数按照一定的规则(即偶数除以2,奇数乘以3+1),转换后成为1所需的“步骤数”2. 题目目的:求输入x到输入y之间所有数的循环次数中最多的一个注意事项:我个人认为做这一题…… 题解列表 2022年10月12日 0 点赞 0 评论 91 浏览 评分:0.0
python版小白易懂解法 摘要:解题思路:#循环长度,一个数按照一定的规则转换后成为1所需的“步骤数”#题目所求,输入x到输入y之间所有数的循环长度中最大的一个注意事项:输入的两数x,y的大小不确定参考代码:while True: …… 题解列表 2022年09月12日 0 点赞 0 评论 163 浏览 评分:0.0