多组输入输出

整形数组合并

http://www.nowcoder.com/questionTerminal/c4f11ea2c886429faf91decfaf6a310b

#include<bits/stdc++.h>
using namespace std;

int main()
{
    int one,two;
    while( ~scanf("%d",&one) )
    {
        set<int> solve;
        int temp;
        int loop=one;
        while( loop-- )
        {
            scanf("%d",&temp);
            solve.insert( temp );
        }

        scanf("%d",&two);
        loop=two;
        while( loop-- )
        {
            scanf("%d",&temp);
            solve.insert( temp );
        }

        for( auto num : solve )
        {
            printf("%d", num );
        }
        printf("\n");
    }

    //system("pause");
    return 0;
}
全部评论

相关推荐

11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务