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 评论 348 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:#include "stdio.h" //数值较大时会挂掉#include "string.h"#define max(a,b) a>b?a:b…… 题解列表 2018年11月09日 0 点赞 0 评论 484 浏览 评分:0.0
求哪里错了?? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,freq,num,max=0,temp; int i,j; while(scanf("%d%d"…… 题解列表 2018年11月05日 0 点赞 0 评论 457 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:这里选择的是几组数据一起输入,再一起输出。参考代码:#include <stdio.h> int main() { double m[100],n[100],a,b; …… 题解列表 2018年11月01日 2 点赞 1 评论 370 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:#include "stdio.h"int count = 0;int f(int n){ if (n == 1) { int k = count + 1; count = 0; return …… 题解列表 2018年10月31日 0 点赞 0 评论 246 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:#include "stdafx.h" //不通过 参考int count = 0; int f(int n){ if (n == 1) { int k = count + 1;…… 题解列表 2018年10月31日 0 点赞 0 评论 264 浏览 评分:0.0
The 3n + 1 problem (C语言代码)韩哥哥的解法,有冒泡排序哦 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,n,t,x,y,p,q,o,temp; int a[100]; while(~scanf("%…… 题解列表 2018年09月23日 0 点赞 0 评论 690 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:求解每一个数的循环长度,然后再求最大值。注意事项:注意前面的大,后面的小时,要先交换两个数,但是也要注意先输出或保存交换前的两个数,因为是按输入顺序输出前面两个数的参考代码:#include…… 题解列表 2018年09月08日 0 点赞 0 评论 450 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:这个问题其实很简单,无非就是先把输入的数据先存储起来,在对每组数据进行一个找最大周期长度的过程,存储的话我用的是vector,找最大周期长度写一个while循环注意事项:1、算最大周期长度要…… 题解列表 2018年09月04日 0 点赞 0 评论 479 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:数字本身也正在运行次数类,所以最后的max要加1每次循环结束记得要k归0,最大值也要归零#include<iostream>using namespace std;int main() { long …… 题解列表 2018年08月02日 0 点赞 0 评论 396 浏览 评分:0.0