The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:相信很多人踩雷在了 当输入的n>m的情况上了参考代码:#include <stdio.h>#include <string.h>int main(){ int n,m,i,…… 题解列表 2019年04月18日 0 点赞 0 评论 220 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) 摘要:#思路 通过输入获得n1,n2;比较n1,n2的大小;使用for循环获得两数中循环次数的最大值,并输出。再将前面的放进循环中。 #心得 1.可以使用cin作为while的判断条件。例如:whil…… 题解列表 2020年02月02日 0 点赞 0 评论 190 浏览 评分:0.0
The 3n + 1 problem -题解(Java代码) 摘要:## 刚开始没注意到一个坑,所以一直提示33%不通过; ` import java.util.Scanner; public class Main { …… 题解列表 2020年03月04日 0 点赞 0 评论 249 浏览 评分:0.0
The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:def f(x): c=1 while x!=1: if x%2==0: x=x//2 else: …… 题解列表 2022年04月24日 0 点赞 0 评论 141 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:很简单的一道题,跟着题目描述的思路写就可以了。注意事项:需要注意的是,输入的i不一定小于j!参考代码:#include <stdio.h> int getCycle(long long…… 题解列表 2017年10月11日 0 点赞 0 评论 671 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:注意输入的i j的大小不一定谁大谁小,不要惯性思维先把i j输出了再说,因为题目要求输出顺序与输入相同注意max变量的复原参考代码:#include <stdio.h>#inclu…… 题解列表 2018年05月07日 0 点赞 0 评论 498 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:这里选择的是几组数据一起输入,再一起输出。参考代码:#include <stdio.h> int main() { double m[100],n[100],a,b; …… 题解列表 2018年11月01日 2 点赞 1 评论 376 浏览 评分:0.0
题解 1095: The 3n + 1 problem 摘要:解题思路:注意事项:还得先比较输入的两个数的大小!!!参考代码#include<stdio.h> int main() { int a,b,m,n,j,temp; int su…… 题解列表 2023年04月03日 0 点赞 0 评论 62 浏览 评分:0.0
筛法(赌他不卡我数据 摘要:解题思路:注意事项:参考代码#include <bits/stdc++.h>using namespace std;int a[1001000];int fuck(int x) { int ans =…… 题解列表 2021年04月16日 0 点赞 0 评论 153 浏览 评分:0.0
1095 3n+1(递归解决) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long long digui(int n,long long m){ if(n==1)//如果是 1 ,就退出循环 { m+=1;…… 题解列表 2024年05月30日 0 点赞 0 评论 101 浏览 评分:0.0