精选问答
A+B for Input-Output Practice 这是ACM杭大题库的一道题各位大哥大姐们谁知道答案啊?Problem DescriptionYour task is to Calculate a + b.InputInput contains an integer N in the first line,and then N lines follow.Each line consists of a pair of integers a and b,separated by a space,on

2019-03-30

A+B for Input-Output Practice 这是ACM杭大题库的一道题各位大哥大姐们谁知道答案啊?
Problem Description
Your task is to Calculate a + b.
Input
Input contains an integer N in the first line,and then N lines follow.Each line consists of a pair 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
2
1 5
10 20
Sample Output
6
30
优质解答
题目的翻译是:
题目 计算a+b
输入:首先输入一个N代表下面的行数,然后在下面每行中输入两个数ai和bi,用空格分开.
输出:输出N行,每行输出ai+bi的和.
算法(不知道你会什么语言,所以只拿自然语言描述了):
Step1.获取N,进行标准化判断(即若N不是正整数,则提示错误);
Step2.建立数组A[N];
Step3.For i=1 to N do
{
读入a,b;(更细致一些的话可以加入空格判断,即判断a后第一个不是空格的字符)
将a+b写入A[i];
}
Step4.For i=1 to N do
{
输出A[i];
输出回车键;
}
题目的翻译是:
题目 计算a+b
输入:首先输入一个N代表下面的行数,然后在下面每行中输入两个数ai和bi,用空格分开.
输出:输出N行,每行输出ai+bi的和.
算法(不知道你会什么语言,所以只拿自然语言描述了):
Step1.获取N,进行标准化判断(即若N不是正整数,则提示错误);
Step2.建立数组A[N];
Step3.For i=1 to N do
{
读入a,b;(更细致一些的话可以加入空格判断,即判断a后第一个不是空格的字符)
将a+b写入A[i];
}
Step4.For i=1 to N do
{
输出A[i];
输出回车键;
}
相关问答