码迷,mamicode.com
首页 > 编程语言 > 详细

java笔试题:找出3~999的水仙花数的三种实现方式

时间:2018-10-02 17:47:17      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:技术   int   ++   getc   i++   etc   info   bubuko   水仙花数   

第一种方式:

package test;

public class Exsercise {
    
    public static void main(String[] args) {
        int sum;
        System.out.println("100~999之间的水仙花数为:");
        for (int i = 100; i <= 999; i++) {
            sum = getCubic(i/100) + getCubic((i/10)%10) + getCubic(i%10);
            if(sum == i){
                System.out.print(i + " ");
            }
        }
    }
    
    public static int getCubic(int num){
        num = num * num * num;
        return num;
    }
}

结果视图:

技术分享图片

 

第二种方式:while语句

package test;

public class Exsercise {
    
    public static void main(String[] args) {
        int sum;
        int i = 100;
        System.out.println("100~999之间的水仙花数为:");
        while(i < 1000){
            sum = getCubic(i/100) + getCubic((i/10)%10) + getCubic(i%10);
            if (sum == i) {
                System.out.print(i + " ");
            }
            i++;
        }
    }
    
    public static int getCubic(int num){
        num = num * num * num;
        return num;
    }
}

结果视图:

 技术分享图片

第三种方式:do……while语句:

package test;

public class Exsercise {
    
    public static void main(String[] args) {
        int sum;
        int i = 100;
        System.out.println("100~999之间的水仙花数为:");
        do{
            sum = getCubic(i/100) + getCubic((i/10)%10) + getCubic(i%10);
            if (sum == i) {
                System.out.print(i + " ");
            }
            i++;
        }while(i<1000);
    }
    
    public static int getCubic(int num){
        num = num * num * num;
        return num;
    }
}

结果展示:

技术分享图片

好了,欢迎优化改进!

java笔试题:找出3~999的水仙花数的三种实现方式

标签:技术   int   ++   getc   i++   etc   info   bubuko   水仙花数   

原文地址:https://www.cnblogs.com/superdrew/p/9736754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!