The Land of Justice——球的表面积,圆的面积

来源:互联网 发布:js 字符串加密和解密 编辑:程序博客网 时间:2024/04/30 14:23

The Land of Justice
Input: standard input
Output: standard output
Time Limit: 4 seconds

In the Land of Justice the selling price of everything is fixed all over the country. Nobody can buy a thing and sell it in double price. But, that created problems for the businessmen. They left their business and went to the production. So, after some days everybody was in production and nobody in business. And the people didn’t get their necessary things though the country was self-sufficient in every sector.

 

The government became very much anxious. But, they were intelligent enough to call the mathematicians.

 

The mathematicians gave a solution.  They suggested setting the surface area of an object as its selling-unit instead of its volume. Actually the clever mathematicians were very much interested to establish their own business.

 

Now, the government asks the programmers to build the software that would calculate the profit things.

 

Here your job is to calculate the business profit for a solid sphere. A businessman buys a complete sphere and to maximize his profit he divides it in n equal parts. All cut should go through the axis of the sphere. And every part should look like the picture below:

 

Input

You are given a sequence of integers N (0 < N < 231), indicating the numbers of parts of the sphere. The input file is terminated with a negative number. This number should not be processed.

 

Output

Calculate the profit over the sold pieces. The result should be in percentage and rounded to the nearest integer.

  

Sample input

2

2

-1

 

Sample output

50%

50%


题意:销售一个球,原来是按体积销售,为了增加利润,按表面积销售,并且可以将球等分成好几瓣销售,但每一瓣都必须过球的直径,这样卖出去的表面积就会增加,问增加的相对比例是多少。

读懂了题意,题目就很水啦,不过要注意,如果没有切割,即块数为1或0,则比例为0.


#include <iostream>#include <stdio.h>#include <string.h>using namespace std;int main(){    double n,i,j;    while(scanf("%lf",&n) && n >= 0)    {        if(n <= 1)            printf("0%%\n");        else            printf("%.0lf%%\n",25 * n);    }    return 0;}



0 0