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

HustOJ - 1011

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

标签:gif   style   logs   hustoj   约数   ==   opened   close   i++   

技术分享
 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 }
1011 最大公约数

 

HustOJ - 1011

标签:gif   style   logs   hustoj   约数   ==   opened   close   i++   

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

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