您的位置:首页 > 其它

Ural 1068 sum

2014-08-07 09:07 369 查看
A -
Sum(1.5.1)
Crawling in process...
Crawling failed

Time Limit:2000MS    
Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Description

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.

Sample Input

inputoutput
-3

-5

题目大意:

求出1到N的和

#include <iostream>
using namespace std;
int main()
{
int n;
cin>>n;
int sum=0;
int i;
if(n<1)
for(i=n;i<=1;i++)
sum=sum+i;
if(n>=1)
for(i=1;i<=n;i++)
sum=sum+i;
cout<<sum<<endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: