1001 A + B Problem

基本输入输出函数

1 #include <stdio.h>
2
3 int main(){
4     int a,b;
5     while(scanf("%d %d",&a,&b)>=0){
6         printf("%d\n",a+b);
7     }
8     return 0;
9 }
时间: 2024-12-07 05:06:36

1001 A + B Problem的相关文章

洛谷1001 A+B Problem

洛谷1001 A+B Problem 本题地址:http://www.luogu.org/problem/show?pid=1001 题目描述 输入两个整数a,b,输出它们的和(|a|,|b|<=10^9).注意1.pascal使用integer会爆掉哦!2.有负数哦!3.c/c++的main函数必须是int类型,而且最后要return 0.这不仅对洛谷其他题目有效,而且也是noip/noi比赛的要求! 好吧,同志们,我们就从这一题开始,向着大牛的路进发.“任何一个伟大的思想,都有一个微不足道的

【HDOJ 1001】Sum Problem

MD 在题库上叫程序有几点注意 ① 类名必须是Main ②不能带包名 ③格式换行不用\n import java.util.*; public class Main { public static void main(String[] args){ long sum=0,n=0; Scanner input = new Scanner( System.in ); while( input.hasNextInt() ){ sum=0; n = input.nextInt(); for(int i=

[acm 1001] c++ 大数加法 乘法 幂

北大的ACM 1001 poj.org/problem?id=1001 代码纯手动编写 - - 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 5 6 class BigNumber 7 { 8 struct BigNumberNode 9 { 10 BigNumberNode():n(0), prev(NULL), next(NULL){} 11 BigNumberNode(int N)

Notepad++中的复活节彩蛋(easter egg)

Notepad++是windows下的一个强大的文本编辑器; 它免费,开源, 比windows自带的记事本强大百倍; 我自己的感觉: 1.打开超大的文本文件,比如100M大小的文本格式的数据,记事本会罢工,Notepad++毫无压力; 2.支持种类繁多的代码的scheme, 比某些收费软件支持的还好, 比如EditPad pro居然不支持matlab/octave脚本的; 3.编辑方面,块编辑和列编辑,是替代记事本的Editor几乎都要考虑的,比较了之后,发现Notepad++做得最好,胜过Ed

wust 1419 1419: We Love 01( 计数问题)

1419: We Love 01 Time Limit: 1 Sec  Memory Limit: 128 MB   64bit IO Format: %lld Submitted: 30  Accepted: 7 [Submit][Status][Web Board] Description You have N '1' and M '0'. You can use all of them to construct a binary number. For example you have 2

【Scrapy】Scrapy爬虫框架的基本用法

Scrapy爬虫框架的基本用法 Scrapy爬虫框架是一个好东西,可以十分简单快速爬取网站,特别适合那些不分离前后端的,数据直接生成在html文件内的网站.本文以爬取 杭电OJ http://acm.hdu.edu.cn 的题目ID和标题为例,做一个基本用法的记录 可参考 https://www.jianshu.com/p/7dee0837b3d2 安装Scrapy 使用pip安装 pip install scrapy 代码编写 建立项目 myspider scrapy startproject

BestCoder Round #29 1001 GTY&#39;s math problem

GTY's math problem Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 0    Accepted Submission(s): 0 Problem Description GTY is a GodBull who will get an Au in NOI . To have more time to learn alg

HDU 5170 GTY&#39;s math problem (bsst code #29 1001)

GTY's math problem Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 146    Accepted Submission(s): 80 Problem Description GTY is a GodBull who will get an Au in NOI . To have more time to learn

HDU 1001 Sum Problem

Problem Description Hey, welcome to HDOJ(Hangzhou Dianzi University Online Judge). In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + ... + n. InputThe input will consist of a series of integers n, one integer per line. OutputFor each ca