题解 | #水仙花数#

水仙花数

http://www.nowcoder.com/practice/dc943274e8254a9eb074298fb2084703

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext())
        {
            int flag=0;
            int m=sc.nextInt();
            int n=sc.nextInt();
            for(int i=m;i<=n;i++)
            {
                int one=i/100;
                int two=i%100/10;
                int three=i%10;
                if(i==(Math.pow(one,3)+Math.pow(two,3)+Math.pow(three,3)))
                {
                     System.out.print(i+" ");
                     flag=1;
                }
            }
            if(flag==0)
            {
                System.out.println("no");
            }
         }
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
11-09 01:22
已编辑
东南大学 Java
高级特工穿山甲:羡慕,我秋招有家企业在茶馆组织线下面试,约我过去“喝茶详谈”😢结果我去了发现原来是人家喝茶我看着
点赞 评论 收藏
分享
联通 技术人员 总包不低于12
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务