柚子


私信TA

用户名:2201986113

访问量:13743

签 名:

2201986113

等  级
排  名 1293
经  验 3003
参赛次数 0
文章发表 22
年  龄 17
在职情况 学生
学  校 西安电子科技大学
专  业

  自我简介:

解题思路:

        任意数量的钱,不管怎么分到最后到应该以3作为分组依据,已达到最简运算。

注意事项:

参考代码:

#include<iostream>
using namespace std;
int  fun(int n)
{	
	int acount = 0;
	if (n == 1)    return 0;
	else if (n == 2 || n == 3)        return 1;
	else
	{
		while (n > 3)
		{
			if (n % 3 == 0)
			{
					n /= 3;
					acount++;
			}
			else 
			{
				n = n / 3 + 1;
				acount++;
			}
		}
	}
	return acount + 1;
	
}

int main()
{
	int a;
	while (cin>>a&&a)
	{
		cout << fun(a) << endl;
	}
	system("pause");
}


 

0.0分

0 人评分

  评论区

  • «
  • »