首页 > 其他分享> > 75、 75、 2022-02-05 16:31:07 作者:互联网 #include <stdio.h>int f(int a){ if(a==1||a==0) return 1; else if(a>1) return a*f(a-1); else return -1;}int main (void){ printf("%d\n",f(5)); return 0;} 标签:return,int,void,else,75,include 来源: https://www.cnblogs.com/cbxg135/p/15864356.html