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

hdu 1000&hdu1001

时间:2016-05-22 10:53:37      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

1001

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
    long long n;
    while(~scanf("%I64d",&n))
    {
        printf("%I64d\n\n",((1+n)*n)>>1);
    }
    return 0;
}

 

1000

import java.io.*;
import java.math.BigInteger;
import java.util.*;
public class hdu1000 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
         Scanner cin=new Scanner (new BufferedInputStream(System.in));
            PrintWriter cout=new PrintWriter(System.out);

            while(cin.hasNextBigInteger())
            {
                BigInteger t=cin.nextBigInteger();
                BigInteger m=cin.nextBigInteger();
                BigInteger ans =0;
                ans=t.add(m);
                System.out.println(ans);


            }
    }


}

 

hdu 1000&hdu1001

标签:

原文地址:http://www.cnblogs.com/superxuezhazha/p/5516197.html

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