Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
C++。 基本
(C++) For 循环运算符。典型任务
Module:
(C++) For 循环运算符。典型任务
Problem
16
/16
N到K的组合数
Problem
给定非负整数
n
和
k
。输出从
n
到
k
的组合个数。
组合数的公式(记住
\(0!= 1\)
):
\(C^k_n=\frac{n!}{k!(n-k)!}\)
。
输入
程序的输入是整数
n
和
k
,每个在一个新行(每个数字不大于 10,
\ (n > = k\)
).
印记
需要输出一个数字作为回应。
例子
<头>
#
输入
输出
东西> <正文>
1
3
2
3
2
4
4
1
表>
1000
ms
256 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary