博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NOIP1998阅读程序写结果 普及组3.2
阅读量:5739 次
发布时间:2019-06-18

本文共 463 字,大约阅读时间需要 1 分钟。

/

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)/2return 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=
/

转载于:https://blog.51cto.com/1443208/2361840

你可能感兴趣的文章
算法(第4版) Chapter 1
查看>>
前端技术选型的遗憾和经验教训
查看>>
“亲切照料”下的领域驱动设计
查看>>
SRE工程师到底是做什么的?
查看>>
解读:Red Hat为什么收购Ansible
查看>>
PHP json_encode() 函数介绍
查看>>
js动态设置元素高度
查看>>
Ossim下的安全合规管理
查看>>
DelphiWebMVC框架下BPL热部署实现
查看>>
C++与MySQL的冲突
查看>>
siki学习之观察者模式笔记
查看>>
单元测试
查看>>
spring.net 继承
查看>>
ES6:模块简单解释
查看>>
JavaScript indexOf() 方法
查看>>
用Bootstrap写一份简历
查看>>
ZJU PAT 1023
查看>>
WMI远程访问问题解决方法
查看>>
从零开始学习IOS,(UILabel控件)详细使用和特殊效果
查看>>
Android开发历程_15(AppWidget的使用)
查看>>