The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:注意输入的i j的大小不一定谁大谁小,不要惯性思维先把i j输出了再说,因为题目要求输出顺序与输入相同注意max变量的复原参考代码:#include <stdio.h>#inclu…… 题解列表 2018年05月07日 0 点赞 0 评论 498 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i, j, k, count = 1, max = 0, t; while (scanf("%d %d"…… 题解列表 2018年07月16日 1 点赞 0 评论 609 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:求最大循环长度注意事项:参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){int m,n;whi…… 题解列表 2018年08月02日 0 点赞 0 评论 346 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:数字本身也正在运行次数类,所以最后的max要加1每次循环结束记得要k归0,最大值也要归零#include<iostream>using namespace std;int main() { long …… 题解列表 2018年08月02日 0 点赞 0 评论 399 浏览 评分:0.0
The 3n + 1 problem (C++代码) 摘要:解题思路:这个问题其实很简单,无非就是先把输入的数据先存储起来,在对每组数据进行一个找最大周期长度的过程,存储的话我用的是vector,找最大周期长度写一个while循环注意事项:1、算最大周期长度要…… 题解列表 2018年09月04日 0 点赞 0 评论 484 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:求解每一个数的循环长度,然后再求最大值。注意事项:注意前面的大,后面的小时,要先交换两个数,但是也要注意先输出或保存交换前的两个数,因为是按输入顺序输出前面两个数的参考代码:#include…… 题解列表 2018年09月08日 0 点赞 0 评论 454 浏览 评分: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 评论 692 浏览 评分: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 评论 266 浏览 评分: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 评论 247 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:这里选择的是几组数据一起输入,再一起输出。参考代码:#include <stdio.h> int main() { double m[100],n[100],a,b; …… 题解列表 2018年11月01日 2 点赞 1 评论 376 浏览 评分:0.0