🌈 搜索
📅  最后修改于: 2022-03-11 14:49:08.401000             🧑  作者: Mango
int factrec(int y){ if(y==1) return 1 else return y*factrec(y-1) }