频道栏目
首页 > 资讯 > 其他 > 正文

acm_step1.1.6 1.1.7 1.1.8

17-06-20        来源:[db:作者]  
收藏   我要投稿

1.1.6和1.1.4相似,不过是少了n=0时不做处理那个条件,1.1.7和1.1.1相似,不过多了输出一个空行而已。1.1.8和1.1.5类似,下面来看看1.1.8。
题目描述:
Problem Description
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
题意:先在第一行输入一个数字N,表示你将处理N行的数据,接下来输入M,表示改行要处理的M个数据,然后求和,最后要求在两个输出的和之间要有一个空行。(注意:是两个输出结果之间)N行就是N个M。
上代码:

#include

int main()
{
    int N, M, i, j, a;
    int sum = 0;

    while (scanf("%d", &N) != EOF)
    {
        for (i = 0; i < N; i++)
        {
            scanf("%d", &M);
            for (j = 0; j < M; j++)
            {
                scanf("%d", &a);
                sum += a;
            }
            if (i != N - 1)
                printf("%d\n\n", sum);
            else
                printf("%d\n", sum);
            sum = 0;
        }
    }

    return 0;
}

难点:输出结果后再输出空行,但是输出到最后一行时,将不再输出空行。

相关TAG标签
上一篇:java画随机颜色同心圆
下一篇:统计数组arr中值等于item的元素出现的次数
相关文章
图文推荐

关于我们 | 联系我们 | 广告服务 | 投资合作 | 版权申明 | 在线帮助 | 网站地图 | 作品发布 | Vip技术培训 | 举报中心

版权所有: 红黑联盟--致力于做实用的IT技术学习网站