首页 > 其他 > 详细

NOIP1998阅读程序写结果 普及组3.2

时间:2019-03-13 10:38:33      阅读:161      评论:0      收藏:0      [点我收藏+]
/
NOIP1998阅读程序写结果 普及组3.2
/
#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
const int n=10;
int s;
int co(int i1) //2 //c(n,m)=n!/(m!*(n-m)!)
{
int j1,s1;
s1=n; //s1=10

for(int j1=n-1;j1>=n-i1+1;--j1)  //j1=9  j1=9  c(10,i1)
    s1=(s1*j1)/(n-j1+1);  //s1=(10*9)/2

return s1;  

}
int main()
{
s=n+1; //11
for(int i=2;i<=n;i++)
{
//cout<<" "<<co(i)<<endl;
s=s+co(i);
}
printf("S=%d",s);
}
/
答案:S=
/

NOIP1998阅读程序写结果 普及组3.2

原文:https://blog.51cto.com/1443208/2361840

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!