HDOJ 1001_Sum Problem

Posted phalq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDOJ 1001_Sum Problem相关的知识,希望对你有一定的参考价值。

AC代码:

#include <iostream>
#include <cstdio>
using namespace std;
int main(void)
{
    freopen("in.txt","r",stdin);
    long long n;
    while(scanf("%lld",&n)!=EOF)
    {
        if(n%2==0)
            printf("%lld

",n/2*(n+1));
        else
            printf("%lld

",(n+1)/2*n);
     } 
    
    fclose(stdin);
    
    return 0;
}

 

以上是关于HDOJ 1001_Sum Problem的主要内容,如果未能解决你的问题,请参考以下文章

[HDU1001] Sum Problem

HDOJ_2047_阿牛的EOF牛肉串

hdu-1001Sum Problem

hdu 1001 Sum Problem

hdu 1001 Sum Problem

HDOJ_1228_A+B