hdu 1000&hdu1001
Posted 行尸走肉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1000&hdu1001相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章