//按照顺序打印一个数字的每一位
public static void print(int n){
if( n > 9 ){
print( n / 10);
}
System.out.print( n % 10 );
}
public static void main(String[] args) {
print(12345);
}
运行结果:
Posted LinYanyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按照顺序打印一个数字的每一位相关的知识,希望对你有一定的参考价值。
//按照顺序打印一个数字的每一位
public static void print(int n){
if( n > 9 ){
print( n / 10);
}
System.out.print( n % 10 );
}
public static void main(String[] args) {
print(12345);
}
运行结果:
以上是关于按照顺序打印一个数字的每一位的主要内容,如果未能解决你的问题,请参考以下文章