| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 687 人关注过本帖
标题:版主救命~
取消只看楼主 加入收藏
落在秋天的叶
Rank: 1
等 级:新手上路
帖 子:77
专家分:9
注 册:2008-6-21
结帖率:50%
收藏
已结贴  问题点数:15 回复次数:1 
版主救命~
1068. Sum
Time Limit: 2.0 second
Memory Limit: 16 MB

Your task is to find the sum of all integer numbers lying between 1 and N inclusive.
Input
The input consists of a single integer N that is not greater than 10000 by it's absolute value.
Output
Write a single integer number that is the sum of all integer numbers lying between 1 and N inclusive.
 

#include "stdio.h"
int main()
{
   int n,sum = 0;
   int i;
   scanf("%d",&n);
   if(n > 10000)
       return 0;
   if(n < 0)
   {
     for( i = n; i <=0;i ++)
     {
       sum += i;
     }
     sum += 1;
   }
   else
   {
      for(i = 0;i <= n;i ++)
      {
         sum += i;
      }
   }
   printf("%d\n",sum);
   return 0;
}
//////////
#include "stdio.h"
#include "math.h"
int main()
{
   int n,sum = 0;
   int i;
   scanf("%d",&n);
   if(n > 10000)
       return 0;
   printf("%d\n",(n + 1) * (abs(n - 1) + 1)/2);
   return 0;
}
上面是一个acm简单题的两个不同的程序,测试数据相同 结果相同,为什么上面一个通不过,下面一个却可以 。。。
搜索更多相关主题的帖子: 版主 救命 
2010-11-02 17:24
落在秋天的叶
Rank: 1
等 级:新手上路
帖 子:77
专家分:9
注 册:2008-6-21
收藏
得分:0 
回复 2楼 筱晓绾
哪里缺?第一个不需要的吧
2010-11-02 17:27
快速回复:版主救命~
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029017 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved