现在的位置: 首页 > 综合 > 正文

10499 – The Land of Justice

2013年02月06日 ⁄ 综合 ⁄ 共 150字 ⁄ 字号 评论关闭
#include <iostream>
using namespace std;
int main()
{
    long long int x;
    while(cin>>x)
        if(x<=0)break;
        else if(x==1)cout<<"0%"<<endl;
        else cout<<25*x<<"%"<<endl;
    return 0;
}

抱歉!评论已关闭.