Java教程

java 求阶乘

本文主要是介绍java 求阶乘,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package com.oop;

public class factorical {
	public static void main(String[] args) {
		long result = sumOf(10);
		System.out.println(result);
		
		long sum = sum(10);
		System.out.println(sum);
	}
	
	public static long sumOf(int n) {
		if (n == 1 || n == 0) {
			return 1;
		}
		else {
			return n*sumOf(n-1);
		}
	}
	
	public static long sum(int n) {
		long total = 1;
		for(int i = 1; i <= n;i++) {
			total *= i;
		}
		return total;
	}
}
这篇关于java 求阶乘的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!