2021/03/18100 浏览综合
include <iostream> include <stdio.h> int jc(int m){ if(m!=1) return m*jc(m-1);else return 1;} int c(int m,int n){ if(m>=
TapTap
4