2015年2月10日 星期二

[UVA] 10499 - The Land of Justice

/*20150211 hanting*/
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
    int n;
    while(cin>>n && n>0)
    {
        if(n==1) cout<<"0%"<<endl;
        else
        {
            double ans=n/4.*100.;
            cout<<fixed<<setprecision(0)<<ans<<"%"<<endl;
        }
    }
    return 0;
}

沒有留言:

張貼留言