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
1095: The 3n + 1 problem java代码, 以及hasNext与hasNextLine的大致区别 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年02月26日 0 点赞 0 评论 202 浏览 评分: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
The 3n + 1 problem -题解(C语言代码) 摘要: ```c #include #include int is(int n) { if(n==1) return 1; if(n%2) n=3*n+1; else n=n/2;…… 题解列表 2020年02月08日 0 点赞 0 评论 216 浏览 评分:0.0
WU-The 3n + 1 problem (C语言代码) 摘要:参考代码:#include<stdio.h> int fenjie(int a) { int i=0; while(a!=1) { if(a%2==0) { a=a/2;…… 题解列表 2017年12月17日 1 点赞 0 评论 750 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:我是看了评论才注意到i,j输出的问题。但是我还有一个问题,输入1和1000000就得不到答案了,还想请教各位大佬。 ```c #include int fun(int m) { …… 题解列表 2019年10月28日 0 点赞 0 评论 238 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int cyclen(int num);int main(){ int a,b,i,max=0,temp; while(sc…… 题解列表 2018年11月15日 0 点赞 0 评论 354 浏览 评分:0.0
The 3n + 1 problem -题解(C语言代码) 摘要:解题思路:注意事项:考虑问题时要全面,特别是输入和输出,输入可能是前比后小,而且输出要是要原顺序输出。同时还要考虑amx要放在哪里。参考代码:# include<stdio.h> int main(…… 题解列表 2021年01月27日 0 点赞 0 评论 173 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:#include <stdio.h> int CL(int k) { int tmp=k; int cnt=1; while(tmp!=1&&tmp>0) …… 题解列表 2019年01月01日 0 点赞 0 评论 280 浏览 评分: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 评论 63 浏览 评分:0.0