码迷,mamicode.com
首页 > 其他好文 > 详细

HustOJ - 1010

时间:2017-05-04 12:43:00      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:std   hustoj   blog   splay   display   play   opened   printf   技术   

技术分享
 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 }
1010 菲波那契数

 

HustOJ - 1010

标签:std   hustoj   blog   splay   display   play   opened   printf   技术   

原文地址:http://www.cnblogs.com/domen0814/p/6806386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!