uva10499 The Land of Justice

花了一个小时看懂了题目,花了两分钟AC了代码。。。。。。。。。。。。。。。。。坑爹啊!!!

View Code
 1 #include<stdio.h>
 2 int main()
 3 {
 4     long long n;
 5     while(scanf("%lld",&n) && n > 0)
 6     {
 7         if(n == 1)
 8             printf("0%%\n");
 9         else
10             printf("%lld%%\n",n*25);
11     }
12     return 0;
13 }
原文地址:https://www.cnblogs.com/SDUTYST/p/2603775.html