uva 10499 - The Land of Justice

感觉很简单的一题,但是wa了两次,还是看了网上的代码才知道,虽然N是int型的,但是25*n就不一定是了,改成long就行了

uva 10499 - The Land of Justice
#include<iostream>
using namespace std;
int main(){
    long n;
    while(cin>>n){
        if(n<0)
            break;
        if(n==1){
            cout<<"0%"<<endl;
            continue;
        }
        cout<<n*25<<"%"<<endl;
    }
}
uva 10499 - The Land of Justice

uva 10499 - The Land of Justice

上一篇:1、事务的四种特性 及 实现方式?


下一篇:AI精确设置参考线之创建技巧