解题思路:用大整形
package test; //题目 2114: 信息学奥赛一本通T1173-阶乘和 import java.util.Scanner; import java.math.BigInteger; public class t_2114 { public static void main(String args[]) { int n; BigInteger sum=new BigInteger("0");//阶乘总和 BigInteger temp1=new BigInteger("1");//用于单次阶乘的合 BigInteger temp3=new BigInteger("1");//用于置零 Scanner sc=new Scanner (System.in); n=sc.nextInt(); int temp2;//用来暂存每次的值 for(int i=1;i<=n;i++) { temp2=i; temp1=temp3;//每次开始前用于存储每次阶乘的值置一 while (temp2!=0) { String str=Integer.toString(temp2);//将整形转换为字符串 BigInteger x=new BigInteger(str); temp1=temp1.multiply(x); temp2--; } sum=sum.add(temp1);//相加每次结果 } System.out.println(sum); } }
0.0分
0 人评分
C语言训练-阶乘和数* (C语言代码)-------- 呆板写法浏览:1396 |
C语言训练-求PI* (C语言代码)浏览:638 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:477 |
1073题解浏览:652 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:760 |
检查金币 (C语言代码)浏览:1505 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:539 |
C二级辅导-阶乘数列 (C语言代码)浏览:1831 |