HustOJ - 1010
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HustOJ - 1010相关的知识,希望对你有一定的参考价值。
1 #include<stdio.h> 2 int main() 3 { 4 int a,b,s,t,i,j; 5 while((scanf("%d",&a)==1)) 6 { 7 if (a<=12&&a>=1) 8 { 9 t=0; 10 for (i=1;i<=a;i++) 11 { 12 s=1; 13 for (j=1;j<=i;j++) 14 { 15 s=s*j; 16 } 17 t=t+s; 18 } 19 printf("%d\n",t); 20 } 21 } 22 }
以上是关于HustOJ - 1010的主要内容,如果未能解决你的问题,请参考以下文章