The 3n + 1 problem (c++) 摘要:解题思路:真的是又长又臭参考代码:#include<iostream>using namespace std;int main(){ long long count = 1; long l…… 题解列表 2022年07月14日 0 点赞 0 评论 143 浏览 评分:9.9
个人思路,随便看看吧 摘要:解题思路:学会列表的相关操作很重要注意事项:参考代码:def fun(n): l1 = [n] while n != 1: if n % 2 == 0: …… 题解列表 2022年08月22日 0 点赞 0 评论 101 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:```cpp #include using namespace std; int main() { int m,n,max; while(cin>>m>>n) {…… 题解列表 2022年08月31日 0 点赞 0 评论 196 浏览 评分:9.9
python版小白易懂解法 摘要:解题思路:#循环长度,一个数按照一定的规则转换后成为1所需的“步骤数”#题目所求,输入x到输入y之间所有数的循环长度中最大的一个注意事项:输入的两数x,y的大小不确定参考代码:while True: …… 题解列表 2022年09月12日 0 点赞 0 评论 165 浏览 评分:0.0
1095: The 3n + 1 problem 摘要:解题思路:1. 循环次数:一个数按照一定的规则(即偶数除以2,奇数乘以3+1),转换后成为1所需的“步骤数”2. 题目目的:求输入x到输入y之间所有数的循环次数中最多的一个注意事项:我个人认为做这一题…… 题解列表 2022年10月12日 0 点赞 0 评论 91 浏览 评分: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 评论 103 浏览 评分: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
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 评论 58 浏览 评分: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
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