您的位置:

java中math的方法阶乘,java阶乘和数

本文目录一览:

java中怎么实现阶乘,如计算1~100的阶乘

使用BigInteger大容量运算类计算100的阶乘

一.一般算法(循环)

view plaincopy to clipboardprint?

public class Test {

public static void main(String[] args) {

int result = 1;

for (int i = 1; i = 100; i++) {

result *= i;

}

System.out.println(result);

}

}

public class Test {

public static void main(String[] args) {

int result = 1;

for (int i = 1; i = 100; i++) {

result *= i;

}

System.out.println(result);

}

}

输出结果为0,因为int无法保存下100的阶乘的结果,100的阶乘的长度至少大于50位,也要大于long,double

二.使用BigInteger大容量运算类

view plaincopy to clipboardprint?

import java.math.BigInteger;

public class Test {

public static void main(String[] args) {

BigInteger result = new BigInteger("1");//为result赋初始值,为1

for (int i = 1; i = 100; i++) {

BigInteger num = new BigInteger(String.valueOf(i));

result = result.multiply(num);//调用自乘方法

}

System.out.println(result);//输出结果

System.out.println(String.valueOf(result).length());//输出长度

}

}

import java.math.BigInteger;

public class Test {

public static void main(String[] args) {

BigInteger result = new BigInteger("1");//为result赋初始值,为1

for (int i = 1; i = 100; i++) {

BigInteger num = new BigInteger(String.valueOf(i));

result = result.multiply(num);//调用自乘方法

}

System.out.println(result);//输出结果

System.out.println(String.valueOf(result).length());//输出长度

}

}

计算结果为:93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000

产度:158

JAVA中怎么表示阶乘

1、首先在电脑打开eclipse软件,创建Scanner对象。

2、然后输出信息,请求用户输入要输入计算的阶乘数。代码:System.out.println("请输入要计算的阶乘数:");

3、然后创建num接受键盘输入的信息。再创建n,sum。

4、然后创建for语句,进行计算阶乘。

5、然后在最后,输出所算的阶乘结果。代码:System.out.println(n+"的阶乘为"+sum);

6、然后再点击程序运行按钮。在下面的窗口就可以看到运行结果。

java怎么写求阶乘?

亲测可用

long jiecheng(int x)

{

long int i,k=1;

for(i=1;i=x;i++)

k=k*i;

return k;

}

int main()

{

long int j,k=0;

int i;

for(i=1;i=20;i++)

{

j=jiecheng(i);

k+=j;

}

printf("%ld\n",k);

}

输出的结果是2561327494111820313

扩展资料:

一个正整数的阶乘(factorial)是所有小于及等于该数的正整数的积,并且0的阶乘为1。自然数n的阶乘写作n!。1808年,基斯顿·卡曼引进这个表示法。

亦即n!=1×2×3×...×n。阶乘亦可以递归方式定义:0!=1,n!=(n-1)!×n。

计算方法:

大于等于1:

任何大于等于1 的自然数n 阶乘表示方法:n! = 1×2×3×...×(n-1)n或n! = n×(n-1)!

0的阶乘:0!=1。

参考资料:百度百科——阶乘

用JAVA 编程方法“ 求出1~10的阶乘”

import javax.swing.*;

import java.math.BigInteger;

public class JieCheng extends JFrame {

/**

* @author Min Shakes

*/

private JTextArea output;

private BigInteger cal(String input){ //计算方法cal

BigInteger result=BigInteger.ONE;

BigInteger max=new BigInteger(input);

for(BigInteger i=BigInteger.ONE;max.compareTo(i)!=-1;i=i.add(BigInteger.ONE))

result=result.multiply(i);

return result;

}

public JieCheng(){ //constructor

super("阶乘计算器");

output=new JTextArea();

output.setLineWrap(true); //设置JTextArea自动换行

output.setWrapStyleWord(true);

JScrollPane out=new JScrollPane(output);

getContentPane().add(out);

setSize(400,300);

setVisible(true);

}

public static void main(String[] args) {

// TODO Auto-generated method stub

try{

String input=JOptionPane.showInputDialog("请输入您要求阶乘的数:");

JieCheng app=new JieCheng();

app.output.setText(input+"!="+app.cal(input));

app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

catch(Exception e){

System.exit(0);

}

}

}

Java阶乘 程序

楼主这个程序错的一塌糊涂

都错在基础知识上。

稍等一下,我帮你改,再额外给你一个求阶乘的方法

import java.util.Scanner;

import java.math.BigInteger;

public class Outer {

public static void main(String[] args) {

int n;

//用do..while循环 当输入为0时,退出

do {

//从控制台获取一整数(包括20)

n = new Scanner(System.in).nextInt();

//把int转化成BigInteger类型

BigInteger result = BigInteger.valueOf(1);

//利用循环求出n!

for(int i = 2; i = n; i++) {

BigInteger b1 = BigInteger.valueOf(i);

result = result.multiply(b1);

}

System.out.println(result);

} while(n != 0);

}

}

方法二:用递归

import java.util.Scanner;

public class Test{

public static void main(String[] args) {

int input = new Scanner(System.in).nextInt();

int result = DiGui(input);

System.out.println(result);

}

//用递归求阶乘

public static int DiGui(int n) {

if(n == 1) {

return 1;

}

return n * DiGui(n - 1);

}

}

java阶乘的算法是什么?

public class Factorial { public static int factorial(int x) { if (x 0) { throw new IllegalArgumentException(x must be=0); } int fact = 1; for (int i = 2; i = x; i++) { fact *= i; } return fact; } public static void main(String args[]) { System.out.print(factorial(10)); }}这个是利用递归算法制成的。public class factorial2 { public static int factorial2(int x) { if (x 0) { throw new IllegalArgumentException(x must be=0); } if (x = 1) { return 1; } else return x * factorial2(x - 1); } public static void main(String args[]) { System.out.print(factorial2(17)); }}这个是数组添加的方法制成的,可以计算更大的阶乘。public class Factorial3 { static long[] table = new long[21]; static {table[0] = 1; } static int last = 0; public static long factorial(int x) throws IllegalArgumentException { if (x = table.length) { throw new IllegalArgumentException(Overflow; x is too large.); } if (x = 0) { throw new IllegalArgumentException(x must be non-negative.); } while (last x) { table[last + 1] = table[last] * (last + 1); last++; } return table[x]; } public static void main(String[] args) { System.out.print(factorial(4)); }}最后一个是利用BigInteger类制成的,这里可以用更大的更大的阶乘。import java.math.BigInteger;import java.util.*;public class Factorial4{ protected static ArrayList table = new ArrayList(); static{ table.add(BigInteger.valueOf(1));} public static synchronized BigInteger factorial(int x){ for(int size=table.size();size=x;size++){ BigInteger lastfact= (BigInteger)table.get(size-1); BigInteger nextfact= lastfact.multiply(BigInteger.valueOf(size)); table.add(nextfact); } return (BigInteger) table.get(x); } public static void main(String[] args) { System.out.print(factorial(4)); } }其实方法还有很多,这里提供的也算是个框架形式。分享之