码迷,mamicode.com
首页 > 其他好文 > 详细

输出正整数的各位数字

时间:2019-10-03 18:23:03      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:span   image   out   alt   设计   method   style   system   src   

1、算法设计:

class Method{
    public void digist(int n){
        if(n!=0){
            digist(n/10);
            System.out.println(n%10);
        }
    }
}

测试:

public class Main {
    public static void main(String[] args) {
        Method method=new Method();
        method.digist(123);
    }
}

结果:

技术图片

 

 2、过程分析:

技术图片

 

输出正整数的各位数字

标签:span   image   out   alt   设计   method   style   system   src   

原文地址:https://www.cnblogs.com/zhai1997/p/11620132.html

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