阶乘c语言

以下是计算阶乘的C语言代码示例:```c include int main() { int n, factorial = 1; printf("请输入一个正整数:");