标签:com oid 技术 数字 loading 顺序 pre code rgs
//按照顺序打印一个数字的每一位
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);
}
运行结果:
标签:com oid 技术 数字 loading 顺序 pre code rgs
原文地址:https://www.cnblogs.com/LinYanyan1024-6285/p/14099361.html