当前位置:   article > 正文

2015蓝桥杯省赛---java---C---6(奇妙的数字)_2015 java c组蓝桥杯

2015 java c组蓝桥杯

题目描述

在这里插入图片描述

思路分析

看到这题目想到的就是 for 循环遍历数字,然后计算它的平方和立方再去判断它们刚好使用0-9这10个数各一次。

代码实现

package com.kuang.study.lanqiao;

/**
 * @创建人 wdl
 * @创建时间 2021/4/8
 * @描述
 */
public class Main {
    public static void main(String[] args) {
        for (int i = 0; i < 1000; i++) {
            int a=i*i;
            int b=i*i*i;
            String str=a+""+b;
            if((str.length()==10)&&(check(str))){
                System.out.println(i);
            }
        }

    }

    public static boolean check(String str){
        if(str.contains("1")&&
                str.contains("2")&&
                str.contains("3")&&
                str.contains("4")&&
                str.contains("5")&&
                str.contains("6")&&
                str.contains("7")&&
                str.contains("8")&&
                str.contains("9")&&
                str.contains("0")){
            return true;
        }
        return false;
    }





}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

答案

69
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/73636?site
推荐阅读
相关标签
  

闽ICP备14008679号