HzuHtx


私信TA

用户名:hetangxin123

访问量:44769

签 名:

私はいつまでもレムが好きです。

等  级
排  名 32
经  验 14532
参赛次数 10
文章发表 76
年  龄 0
在职情况 学生
学  校 贺州学院
专  业 软件工程

  自我简介:

写不动,根本写不动



#include "iostream"
#include "algorithm"
using namespace std;
int main()
{
	int n;
	while (cin >> n)
	{
		int num[1000] = { 0 };                        //存每一位数的种类
		for (int i = 1; i <= n; i++)
		{
			for (int j = 1; j <= i / 2; j++)
			{
				num[i] = num[i] + num[j];    //每一位叠加
			}
			num[i]++;                            //加上本身
		}
		cout << num[n] << endl;
	}
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »