练习3

Posted 浅笑Cc。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习3相关的知识,希望对你有一定的参考价值。

//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);   

       }

  }

 

 //运行结果

 

以上是关于练习3的主要内容,如果未能解决你的问题,请参考以下文章

MySQL 练习<3>

MySQL 练习<3>

征服指针——指针练习

Python练习题3

codevs 1082 线段树练习 3 --分块练习

Python练习题 028:求3*3矩阵对角线数字之和