标签:i++ 赋值 car 简单函数 main 变量 str NPU class
本题要求实现一个计算非负整数阶乘的简单函数。
int Factorial( const int N );
其中N
是用户传入的参数,其值不超过12。如果N
是非负整数,则该函数必须返回N
的阶乘,否则返回0。
#include <stdio.h>
int Factorial( const int N );
int main()
{
int N, NF;
scanf("%d", &N);
NF = Factorial(N);
if (NF) printf("%d! = %d\n", N, NF);
else printf("Invalid input\n");
return 0;
}
/* 你的代码将被嵌在这里 */
5
5! = 120
代码:
int Factorial( const int N ) { int i, sum = 1; if(N<0) return 0; for(i=1;i<=N;i++) { sum *= i; } return sum; }
回顾了下之前得内容,巩固下学习,这题发现const的作用。const修饰的数据类型是指常类型,常类型的变量或对象的值是不能被重新赋值的。
标签:i++ 赋值 car 简单函数 main 变量 str NPU class
原文地址:https://www.cnblogs.com/zw431387/p/10162137.html