摘要: 要求: 实现一个打印非负整数阶乘的函数 N是用户传入的参数,其值不超过1000。如果N是非负整数,则该函数必须在一行中打印出N!的值,否则打印“Invalid input” 1 #include <stdio.h> 2 3 void Print_Factorial( const int N); 4 阅读全文
posted @ 2020-01-23 23:18 cxc1357 阅读(313) 评论(0) 推荐(0)