c语言上机的填空题,例如 第1题 #include long fun(int n) { if (___1___) return (n*fun(___2___)); return ___3___; } main() { printf("10!=%ld\n", fun(10)); }