蓝桥:马虎的计算

Posted qzhc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝桥:马虎的计算相关的知识,希望对你有一定的参考价值。

技术图片

 

 

public class Main{
    public static void main(String[] args) {
        int num = 0;
        for (int a = 1; a < 10; a++) {
            for (int b = 1; b < 10; b++) {
                if (a!=b){
                    for (int c = 1; c < 10; c++) {
                        if (a!=c&&b!=c){
                            for (int d = 1; d < 10; d++) {
                                if (a!=d&&b!=d&&c!=d){
                                    for (int e = 1; e < 10; e++) {
                                        if (e!=a&&e!=b&&e!=c&&e!=d){
                                            if ((a*10+b)*(c*100+d*10+e)==(a*100+d*10+b)*(c*10+e)){
                                                System.out.println(a+""+b+"*"+c+""+d+""+e+"="+a+""+d+""+b+"*"+c+""+d);
                                                num++;                                           
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        System.out.println(num);
    }
}

 

以上是关于蓝桥:马虎的计算的主要内容,如果未能解决你的问题,请参考以下文章

第四届蓝桥杯试题-马虎的算式

LQ0205 马虎的算式枚举+进制

python蓝桥杯B组考前冲刺

蓝桥杯——根据手册写底层

每日一练蓝桥杯C语言:暴力枚举

第八届蓝桥杯 承压计算 (代码+详解)