The 3n + 1 problem (Java代码) 摘要:import java.util.Scanner; public class Main { public static int zc(int n){ int s=1; while…… 题解列表 2017年12月26日 4 点赞 1 评论 2434 浏览 评分:9.9
The 3n + 1 problem (C++代码) principle's simple c++ 摘要:解题思路:注意事项:此题有两个坑点:第一,并没有说i一定小于j第二,在输入后就应该立刻输出,否则对ij处理完之后就会出错。当然,用户体验用脚趾头想一下都知道非常糟糕。参考代码:#include <io…… 题解列表 2017年12月21日 1 点赞 0 评论 862 浏览 评分: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 评论 1421 浏览 评分:8.4
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 评论 745 浏览 评分: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 评论 1608 浏览 评分:9.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { long long int m,n,i,j,s,max,t; while(scanf("%…… 题解列表 2017年12月14日 0 点赞 0 评论 627 浏览 评分: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
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 评论 550 浏览 评分: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语言代码) 摘要:解题思路:很简单的一道题,跟着题目描述的思路写就可以了。注意事项:需要注意的是,输入的i不一定小于j!参考代码:#include <stdio.h> int getCycle(long long…… 题解列表 2017年10月11日 0 点赞 0 评论 665 浏览 评分:0.0