首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zj177499的代码贴全部
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <math.h>
using namespace std;
double f(double x)
{
  return (x*x*x-3*x*x+3*x-1);
}
double erfen(double x1,double x2,double (*p)(double))//double (*p)(double)为形参,相当于函数别名
{
  double xx;
......................
阅读全部 | 2021年11月18日 16:58
1
zj177499