package homeWork;
/**
* 实现代码:递归求N的阶乘
* @author 天亮教育-刘世龙
* 2022年1月1日 下午8:09:03
*/
public class work_01 {
public static void main(String[] args) {
int result = m1(5);
System.out.println(result);
}
public static int m1(int n){
if(n==1){
return 1;
}else{
return n*m1(n-1);
}
}
}
package homeWork;
/**
* 实现代码:递归求1+2+3+…+10
* @author 天亮教育-刘世龙
* 2022年1月1日 下午8:16:06
*/
public class work_02 {
public static void main(String[] args) {
int result = m1(4);
System.out.println(result);
}
public static int m1(int n){
if (n == 1){
return 1;
}
return n+ m1(n-1);
}
}
package homeWork;
import java.util.Scanner;
/**
* 实现代码:按顺序打印一个数字的每一位(例如1234 打印出1 2 3 4)
* @author 天亮教育-刘世龙
* 2022年1月2日 下午3:26:18
*/
public class work_03 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("