Java的第一个晞月自己打的程序
Posted Sakura晞月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java的第一个晞月自己打的程序相关的知识,希望对你有一定的参考价值。
1.编写一个程序,求1!+2!+…+10!的值。
package xxx; public class abc { public static void main(String args[]) { int[] a = {1,2,3,4,5,6,7,8,9,10}; int a_sum = 0; for(int i=0; i < a.length; i++) { a_sum+=jieCheng(a[i]); } System.out.print(a_sum); } public static int jieCheng(int a1) { int re=1; for(int j=1; j<=a1; j++) { re*=j; } return re; } }
以上是关于Java的第一个晞月自己打的程序的主要内容,如果未能解决你的问题,请参考以下文章
c语言代码编程题汇总 :从键盘上输入一个整数n,输出斐波纳猰数列——自己打的代码