J - A+B for Input-Output Practice (VIII)
Your task is to calculate the sum of some integers.
Input
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.
Output
For each group of input integers you should output their sum in one line, and you must note that there is a blank line between outputs.
Sample Input
3
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3
Sample Output
10
15
6
#include<stdio.h>
int main(){
<
输入输出实践:求整数和

这篇博客介绍了一个计算整数之和的练习题目,包括输入格式和预期的输出样例。题目要求读取多组整数并分别计算它们的和,每组结果之间以空行分隔。
最低0.47元/天 解锁文章
278

被折叠的 条评论
为什么被折叠?



