hdu1000


 1 #include<stdio.h>
2 // 主函数main
3 int main()
4 {
5 int a,b;
6 // 在while循环中以EOF作为文件结束标志
7 // ASCII代码值的范围是0~255,不可能出现-1,因此可以用EOF作为文件结束标志
8 while(scanf("%d %d",&a,&b)!=EOF){
9 // 输出语句
10 printf("%d\n",(a+b));
11 }
12 return 0;
13 }

时间: 2024-10-12 19:52:56

hdu1000的相关文章

HDU-1000 大水题,大坑题!

HDU-1000 A + B Problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 453082    Accepted Submission(s): 143595 Problem Description Calculate A + B. Input Each line will contain two integers A a

是时候整理一发水题了hdu1000~1002

hdu1000 经典的A+B不谈 #include<stdio.h> int main() { int a,b; while (scanf("%d%d",&a,&b)!=EOF) printf("%d\n",a+b); return 0;} 貌似丁神用了各种语言各种姿势过的,太强,我等渣渣就安安心心用着土办法吧``` hdu1001 自然数前n项和,循环或者直接公式吧 #include<stdio.h> int main(){

hdu1000,hdu1001,hdu1002,hdu1003

hdu1000 仅仅是为了纪念 1 #include <cstdio> 2 int main() 3 { 4 int a,b; 5 while (scanf("%d%d",&a,&b)!=EOF) 6 { 7 printf("%d\n",a+b); 8 } 9 return 0; 10 } hdu1001 题目说n*(n+1)/2 不不会爆 但是没和你说n*(n+1)不会爆 用下面这个小方法解决  见代码 #include <ios

[HDU1000] 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 分析 输入两个数A和B,求A+B. 但是是多行的,因此需要用循环反复读取. 又因为输入数据中没有说有多少行,因此不

A + B Problem(hdu1000)

注意,认真读题目的Input要求,看看是输入一组测试数据还是输入多组测试数据.输入多组数据,不要忘记while(). #include<iostream> using namespace std; int main() { double A; double B; while(cin>>A>>B) { cout<<A+B<<endl; } }

A + B Problem,hdu-1000

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<stdlib.h>

水题/hdu 1000 A + B problem

题意 输入a,b,输出a+b: 分析 注意多case Accepted Code 1 /* 2 PROBLEM:hdu1000 3 AUTHER:NicoleLam 4 MEMO:水题 5 */ 6 7 #include<cstdio> 8 int main() 9 { 10 int a,b; 11 while (scanf("%d%d",&a,&b)!=EOF) printf("%d\n",a+b); 12 return 0; 13 }

hdu 1000&amp;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.BigInteg