因为痛,所以叫青春

我有一个梦想:穷屌丝变身富屌丝
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 }

posted on 2012-07-22 16:26  Nice!  阅读(181)  评论(0编辑  收藏  举报