博文
ACM II(2008-04-06 00:28:00)
摘要:输入_第三类:
l 输入不说明有多少个Input Block,但以某个特殊输入为结束标志。
参见:HDOJ_1091
Problem Description
Your task is to Calculate a + b.
Input
Input contains multiple test cases. Each test case contains a pair of integers a and b, one pair of integers per line. A test case containing 0 0 terminates the input and this test case is not to be processed.
Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
Sample Input
1 5
10 20
0 0
Sample Output
6
30
Author
lcy
Recommend
JGShining
Hdoj_1091源代码:
#include <stdio.h>
int main()
{
int a, b;
while(scanf("%d %d", &a, &b) && (a != 0 && b != 0))
 ......
ACM basic of input(2008-04-06 00:27:00)
摘要:Basic input and output
输入_第一类:
输入不说明有多少个Input Block,以EOF为结束标志。 参见:HDOJ_1089
Problem 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 same titles with this one, yes, all these problems were designed for the same aim.
Input
The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line.
Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
Sample Input
1 5
10 20
Sample Output
6
30
Author
lcy
Recommend
JGShining
Hdoj_1089源代码:
#include <stdio.h>
int main()
{
int a,b;
while(scanf("%d %d",&a, &b)......
