10.13 写一个用矩形法求定积分的通用函数,分别求∫_0^1▒sinxdx 、∫_0^1▒cosxdx、∫_0^1▒〖e^x dx〗的值。

10.13 写一个用矩形法求定积分的通用函数,分别求∫_0^1▒sinxdx 、∫_01▒cosxdx、∫_01▒〖e^x dx〗的值。

#include
#include
double Integral(double a, double b, double(*pfn)(double))
{
	double step = 1e-5;
	double ret = 0.0;
	for (double x = a; x < b; x += step)
	{
		ret += step * pfn(x);
	}
	return ret;
}
void main()
{
	printf("%f\n", Integral(0, 1, sin));
	printf("%f\n", Integral(0, 1, cos));
	printf("%f\n", Integral(0, 1, exp));
}

你可能感兴趣的:(编程,函数)