zrq495
www.zrq495.com
球的表面积 :4*π*r*r, 分割后多出的面积 :n*π*r*r,利润 :25*n % 。

当n=1时, 利润:0%。

 1 #include<iostream>
 2 
 3 using namespace std;
 4
 5 int main()
 6 {
 7     long long n;
 8     while(cin >> n, n>0)
 9     {
10         if (n == 1) cout << "0%" << endl;
11         else cout << 25*n << "%" << endl;
12     }
13     return 0;
14 }
posted on 2012-07-26 19:24  zrq495  阅读(193)  评论(0编辑  收藏  举报