标签:static blog line http space nbsp img transform col
//1+2!+3!+...+20!的和
public class jiecheng{
public static void main(String args[]) {
int i,s=0,a;
for(i=1,a=1;i<=20;i++)
{
a*=i; s+=a;
}
System.out.print(s);
}
}
//运行结果
标签:static blog line http space nbsp img transform col
原文地址:http://www.cnblogs.com/songqinzhe/p/7517619.html