递归_三角数字和阶乘

Posted S-Mustard

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归_三角数字和阶乘相关的知识,希望对你有一定的参考价值。

递归是自己调用自己的编程技术,是程序设计中的数学归纳法。
特征:调用自身;当调用自身的时候,是为了解决更小的问题;存在某个足够简单的问题的层次,在这一层算法中不需要调用自己就可以直接解答,且返回结果。
当递归不再调用自己时就会退出递归。

三角数字

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Triangle {
    static int theNumber;//即数学中n的值
    public static void main(String[] args) throws IOException {
        System.out.print("输入 n 的值:");
        theNumber=getInt();
        int theAnswer=triangle(theNumber);
        System.out.print("三角数字是"+theAnswer);

    }
    
    private static int triangle(int n) {
        if(n==1)
            return 1;
        else
            return (n+triangle(n-1));
    }

    public static String getString() throws IOException {
        InputStreamReader inputStreamReader=new InputStreamReader(System.in);
        BufferedReader bufferedReader=new BufferedReader(inputStreamReader);
        return bufferedReader.readLine();

    }
    public static int  getInt() throws IOException {
        String string=getString();
        return Integer.parseInt(string);
    }

}

阶乘

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Factorial {
    static int theNumber;//即数学中n的值
    public static void main(String[] args) throws IOException {
        System.out.print("输入 n 的值:");
        theNumber=getInt();
        int theAnswer=factorial(theNumber);
        System.out.print("阶乘是"+theAnswer);

    }
    
    private static int factorial(int n) {
        if(n==0)
            return 1;
        else
            return (n*factorial(n-1));
    }

    public static String getString() throws IOException {
        InputStreamReader inputStreamReader=new InputStreamReader(System.in);
        BufferedReader bufferedReader=new BufferedReader(inputStreamReader);
        return bufferedReader.readLine();

    }
    public static int  getInt() throws IOException {
        String string=getString();
        return Integer.parseInt(string);
    }

}

 

以上是关于递归_三角数字和阶乘的主要内容,如果未能解决你的问题,请参考以下文章

阶乘斐波那契数列打印三角形(*)递归,冒泡排序

使用参数递归的数字阶乘(如参数列表中的函数调用)

10个JavaScript代码片段,使你更加容易前端开发。

10个JavaScript代码片段,使你更加容易前端开发。

递归检测数字是不是为阶乘

(蓝桥杯)试题 算法训练 递归输出数字三角形