阎振三


私信TA

用户名:dotcpp0667004

访问量:2960

签 名:

吃个桃桃吧

等  级
排  名 1267
经  验 3031
参赛次数 9
文章发表 49
年  龄 13
在职情况 学生
学  校
专  业 333

  自我简介:

家里蹲联大高材生

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>


using namespace std;


int main()

{

    int n;

    cin>>n;

    for(; ;)

    {

        if(n%2==0)

        {

            cout<< n<< "/" << "2=" << (n / 2) << endl;

            n/= 2;

            if(n==1)

                return 0;

        }

        else

        {

            cout << n << "*3+1=" << (n * 3 + 1) << endl;

            n = n * 3 + 1;

        }


    }

}


 

0.0分

0 人评分

  评论区

  • «
  • »