Explain the Below Program?

后端 未结 0 588
死守一世寂寞
死守一世寂寞 2020-12-16 11:32
public class Rename {


public static void app(int n)
{
    if(n>0)
    {
            if(n/8>0)
            app(n/8);
        System.out.println(n%8);
    }
}
         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题