题目网址:https://bzoj.org/p/P00548
Description
谓角谷猜想,是指对于任意一个正整数,如果是奇数,则乘3加1,如果是偶数,则除以2,得到的结果再按照上述规则重复处理,最终总能够得到1。如,假定初始整数为5,计算过程分别为16、8、4、2、1。程序要求输入一个整数,将经过处理得到1的过程输出来。
Input
一个正整数N(N <= 2,000,000)。
Output
从输入整数到1的步骤,每一步为一行,每一部中描述计算过程。最后一行输出"End"。如果输入为1,直接输出"End"。
Samples
输入数据 1
5
输出数据 1
5*3+1=16
16/2=8
8/2=4
4/2=2
2/2=1
End
Sol:很简单,用一个while循环就可以了
代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
while(n!=1)//只要n不是1就继续运行
{
if(n%2==1)
{
cout<<n<<"*"<<"3+1="<<n*3+1<<endl;
n=n*3+1;
}
else
{
cout<<n<<"/2="<<n/2<<endl;
n/=2;
}
}
cout<<"End";
return 0;
}
点个赞再走吧!
标签:输出,角谷,End,猜想,16,int,输入 From: https://www.cnblogs.com/Ace-29/p/18279022