The 3n+1 problem 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>using namespace std;long long len(long long n)…… 题解列表 2022年02月04日 0 点赞 0 评论 96 浏览 评分:0.0
The 3n + 1 problem,goto真好用! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量a, b, c和数组d,l用…… 题解列表 2024年11月11日 0 点赞 0 评论 94 浏览 评分:0.0
1095: The 3n + 1 problem简单易懂,值得所有! 摘要:解题思路:注意事项:参考代码:#includeint wan(int n){int d=0; while(n!=1) { if(n%2==0){n/=2;d++;} else if(n%2!=0…… 题解列表 2021年12月05日 0 点赞 0 评论 214 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:#### 1095: The 3n + 1 problem [原题连接:The 3n +1 problem](https://www.dotcpp.com/oj/problem1000.html "…… 题解列表 2019年10月16日 0 点赞 0 评论 232 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:很简单的一道题,跟着题目描述的思路写就可以了。注意事项:需要注意的是,输入的i不一定小于j!参考代码:#include <stdio.h> int getCycle(long long…… 题解列表 2017年10月11日 0 点赞 0 评论 671 浏览 评分:0.0
python版小白易懂解法 摘要:解题思路:#循环长度,一个数按照一定的规则转换后成为1所需的“步骤数”#题目所求,输入x到输入y之间所有数的循环长度中最大的一个注意事项:输入的两数x,y的大小不确定参考代码:while True: …… 题解列表 2022年09月12日 0 点赞 0 评论 171 浏览 评分:0.0
模块化简单易懂解决问题(一看就会)[C] 摘要:解题思路:运用函数模块化思想编写两个子函数一个函数用来求循环长度一个函数用来求输入范围内的最大循环长度注意事项:不要忘记输入顺序可能是先输入大的后输入小的 如果先输入的值大于后面的值则需要调换位置参考…… 题解列表 2021年05月13日 0 点赞 0 评论 163 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:求解每一个数的循环长度,然后再求最大值。注意事项:注意前面的大,后面的小时,要先交换两个数,但是也要注意先输出或保存交换前的两个数,因为是按输入顺序输出前面两个数的参考代码:#include…… 题解列表 2018年09月08日 0 点赞 0 评论 454 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; int i,t; int n,m,max; while(scanf(…… 题解列表 2018年12月17日 0 点赞 0 评论 251 浏览 评分:0.0
求哪里错了?? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,freq,num,max=0,temp; int i,j; while(scanf("%d%d"…… 题解列表 2018年11月05日 0 点赞 0 评论 461 浏览 评分:0.0