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++代码)(所有测试数据都小于等于1000,,说好的1000000之内呢) 摘要:解题思路:还是原来的套路,,先得出所有结果,,然后输入,,筛选,,输出。。注意事项:x 推荐使用long long int,,否则i==113383,i==134379,i==138367时会爆int…… 题解列表 2017年08月03日 2 点赞 5 评论 1149 浏览 评分: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 评论 722 浏览 评分: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