蓝桥杯试题 历届真题 卡片【第十二届】【java省赛】

        本题需要注意的点在于,如何处理数字10,因为 10 mod 10 等于 0,还需要减去一个1。

public class Main {
    public static void main(String[] args) {
        int[] arr = new int[10];

        //为数组赋值2021
        for (int i = 0; i < arr.length; i++) {
            arr[i] = 2021;
        }

        int temp = 0;       //临时变量
        int count = 0;      //计数器

        for (int i = 1; i < 100000; i++) {
            temp = i;
            while (temp != 0) {
                if (temp % 10 == 0) {       //100 mod 10 等于0,此时不减1,经过判断,执行100 / 10
                    if(temp == 10){         //10 mod 10等于0,还需要减去一个1
                        arr[1] -= 0;
                    }
                    arr[0] -= 1;
                }
                if (temp % 10 == 1) {
                    arr[1] -= 1;
                }
                if (temp % 10 == 2) {
                    arr[2] -= 1;
                }
                if (temp % 10 == 3) {
                    arr[3] -= 1;
                }
                if (temp % 10 == 4) {
                    arr[4] -= 1;
                }
                if (temp % 10 == 5) {
                    arr[5] -= 1;
                }
                if (temp % 10 == 6) {
                    arr[6] -= 1;
                }
                if (temp % 10 == 7) {
                    arr[7] -= 1;
                }
                if (temp % 10 == 8) {
                    arr[8] -= 1;
                }
                if (temp % 10 == 9) {
                    arr[9] -= 1;
                }
                if(arr[i % 10] == 0){
                    return;
                }
                if(temp == 10){     //如果temp等于10时,需要判断arr[1]是否为0,原因如上
                    if(arr[1] == 0){
                        return;
                    }
                }
                if(arr[temp % 10] == 0){
                    return;
                }
                temp /= 10;
            }
            System.out.println(++count);
        }
    }
}

        最终结果3180!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

OneTenTwo76

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

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

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

打赏作者

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

抵扣说明:

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

余额充值