HDU-2034

这是一个Java程序,它读取两个整数数组,然后从第一个数组中减去第二个数组中的元素,将结果存储在一个新的数组中。如果结果数组为空,则输出"NULL",否则对结果数组进行排序并打印。程序使用了Scanner类进行用户输入,并通过双重循环实现数组操作。
摘要由CSDN通过智能技术生成

在这里插入图片描述
注释应该都写的很明白。


import java.util.Arrays;
import java.util.Scanner;

public class Main {
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            while(sc.hasNext()){
                int n = sc.nextInt();
                int m = sc.nextInt();
                if(n == 0 && m == 0) break;
                int[] nn = new int[n];
                int[] mm = new int[m];
                int[] nm = new int[n+m];
                //存值
                for (int i = 0; i < n; i++) {
                    nn[i] = sc.nextInt();
                }
                for (int i = 0; i < m; i++) {
                    mm[i] = sc.nextInt();
                }
                //集合相减
                int cnt = 0;
                for (int i = 0; i < n; i++) {
                    boolean flat = false;
                    for (int j = 0; j < m; j++) {
                        if(nn[i] == mm[j]) flat = true;
                    }
                    if(flat == false) {
                        nm[cnt] = nn[i];
                        cnt++;
                    }
                }
                if(cnt == 0) System.out.println("NULL");
                else {
                    Arrays.sort(nm,0,cnt);
                    for (int i = 0; i < cnt; i++) {
                        System.out.print(nm[i]+" ");
                    }
                    System.out.println();
                }
            }

        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

在地球迷路的怪兽

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值