摘要: 由于C语言的变量的大小的限制,使用已有变量无法保存阶乘结果,所以使用数组保存结果,从而使得无法保存的结果得以保存。 #include <stdio.h> void Print_Factorial ( const int N ); int main() { int N; scanf("%d", &N) 阅读全文
posted @ 2022-01-26 15:48 JianYuBlog 阅读(658) 评论(0) 推荐(0) 编辑