HDU1000】的更多相关文章

hdu1000 仅仅是为了纪念 #include <cstdio> int main() { int a,b; while (scanf("%d%d",&a,&b)!=EOF) { printf("%d\n",a+b); } ; } hdu1001 题目说n*(n+1)/2 不不会爆 但是没和你说n*(n+1)不会爆 用下面这个小方法解决  见代码 #include <iostream> int n; int main() {…
#include <cstdio> int main(){ for(int a,b;~scanf("%d%d",&a,&b);printf("%d\n",a+b)); ; } hdu1000 #include <cstdio> int main(){ ==?((n/)*(+n)):((+n)/)*n))); ; } hdu1001 #include <cmath> #include <cstdio> #…
哈哈A+B #include<stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF){ printf("%d\n",a+b);} ; }…
A + B Problem Problem Description Calculate A + B.   Input Each line will contain two integers A and B. Process to end of file.   Output For each case, output A + B in one line.   Sample Input 1 1   Sample Output 2 #include<stdio.h> #include<stdl…
Problem Description Calculate A + B. Input Each line will contain two integers A and B. Process to end of file. Output For each case, output A + B in one line. Sample Input 1 1 Sample Output 2 分析 输入两个数A和B,求A+B. 但是是多行的,因此需要用循环反复读取. 又因为输入数据中没有说有多少行,因此不…
地址:http://acm.hdu.edu.cn/showproblem.php?pid=1000   Problem Description Calculate A + B.   Input Each line will contain two integers A and B. Process to end of file.   Output For each case, output A + B in one line.   Sample Input 1 1   Sample Output…
题目来源:www.acm.hdu.edu.cn 题目编号:1000  A+B Problem /*----------------------------------------原题目----------------------------------------*/ [Problem Description]   Calculate A + B.   [Input]   Each line will contain two integers A and B. Process to end of…
注意,认真读题目的Input要求,看看是输入一组测试数据还是输入多组测试数据.输入多组数据,不要忘记while(). #include<iostream> using namespace std; int main() { double A; double B; while(cin>>A>>B) { cout<<A+B<<endl; } }…
暑假集训虽然很快乐,偶尔也会比较枯燥,,这个时候就需要自娱自乐... 然后看hdu的排行榜发现,除了一些是虚拟测评机的账号以外,有几个都是AC自动机器人 然后发现有一位作者是用网页填表然后按钮模拟,,,默默噗噗的笑了... 先来晒一下排行榜 要模拟网页,,当然POST大法好啊,直接模拟发送POST数据不就好了咩,,搞填表啥的多麻烦,完全可以写一个程序后台自动跑. 然后他说了一句AC率能达到50%以上的爬虫也是挺吊的,,于是激起了我试一试的决心(我是不是很wuliao)... 先解释一下POST大…
POJ题目分类 | POJ题目分类 | HDU题目分类 | ZOJ题目分类 | SOJ题目分类 | HOJ题目分类 | FOJ题目分类 | 模拟题: POJ1006 POJ1008 POJ1013 POJ1016 POJ1017 POJ1169 POJ1298 POJ1326 POJ1350 POJ1363 POJ1676 POJ1786 POJ1791 POJ1835 POJ1970 POJ2317 POJ2325 POJ2390 POJ1012 POJ1082 POJ1099 POJ1114…
  Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u   Description Your task is to Calculate a + b.  Too easy?! Of course! I specially designed the problem for acm beginners.  You must have found that some problems have the…
1001 #include<iostream> #include<stdio.h> using namespace std; int main() { long long n; while(~scanf("%I64d",&n)) { printf(+n)*n)>>); } ; } 1000 import java.io.*; import java.math.BigInteger; import java.util.*; public cla…
目录 List 前言 长郡 Position: code 1. 2. 持续更新,么么哒 List 前言 有没有觉得写这篇文章很奇怪,这个还是有原因的.①很多OJ都有着道题,所以发个博客②这可以介绍很多OJ(持续更新) 长郡 热烈推荐:http://oj.changjun.com.cn/ 然后有一套A+B的神题-Contest4 - A+B Series(http://www.cnblogs.com/YJinpeng/p/5942724.html) Position: POJ-PKU JudgeO…