The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int fun(int n){ int k=1; if(n==1) { return k; } while(n!=1) {…… 题解列表 2017年07月26日 0 点赞 0 评论 861 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:首先咱们得知道题目是什么意思:题目描述考虑下面的算法来生成一个数字序列。从整数n开始。如果n是偶数,除以2。如果n是奇数,乘以3加1。用n的新值重复这个过程,当n=1时终止。例如,以下序列将…… 题解列表 2017年08月02日 6 点赞 11 评论 1420 浏览 评分:8.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:很简单的一道题,跟着题目描述的思路写就可以了。注意事项:需要注意的是,输入的i不一定小于j!参考代码:#include <stdio.h> int getCycle(long long…… 题解列表 2017年10月11日 0 点赞 0 评论 665 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,j=0,n[100],m[100],count=0,sum[100]={0},k=0,a=0…… 题解列表 2017年10月22日 0 点赞 0 评论 649 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int i,j;while(~scanf("%d%d",&i,&j)){ int count1=1,count_m…… 题解列表 2017年12月11日 1 点赞 0 评论 551 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:好吧,承认自己英语阅读能力菜的抠脚,CE了两次,才发现这句话,you are to determine the maximum cycle length over all numbers b…… 题解列表 2017年12月13日 0 点赞 0 评论 723 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { long long int m,n,i,j,s,max,t; while(scanf("%…… 题解列表 2017年12月14日 0 点赞 0 评论 628 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:#include <stdio.h> int main(void) { int i, j, k, max, n, len, t; while (scanf("%d%d", &i, &j) …… 题解列表 2017年12月16日 77 点赞 9 评论 1609 浏览 评分:9.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 评论 746 浏览 评分:0.0
Manchester-The 3n + 1 problem 摘要:解题思路1.输入两个整数,a,b,然后输出这两个数,每个后面都要有一个空格符;(以文件结束符结束)2.如果a>b,交换这两个数;3.判断从a到b的每一个数 i(包括a,b),(1)如果i为奇数i=i*…… 题解列表 2017年12月18日 42 点赞 3 评论 1422 浏览 评分:8.4