码迷,mamicode.com
首页 > 其他好文 > 详细

HDOJ 1001_Sum Problem

时间:2018-11-27 10:10:59      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:while   clu   ios   using   stdin   close   space   return   txt   

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\n",n/2*(n+1));
        else
            printf("%lld\n\n",(n+1)/2*n);
     } 
    
    fclose(stdin);
    
    return 0;
}

 

HDOJ 1001_Sum Problem

标签:while   clu   ios   using   stdin   close   space   return   txt   

原文地址:https://www.cnblogs.com/phaLQ/p/10024170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!