设计函数,求整数n的阶乘,并在主函数中调用该函数(通过循环结构)计算下列多项式:y=1!+3!+5!+7!
问题描述:
设计函数,求整数n的阶乘,并在主函数中调用该函数(通过循环结构)计算下列多项式:y=1!+3!+5!+7!
答
#include"stdio.h"
long int cal(long int a)
{
for( long int i=1,sum=1;i