首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴梁朝斌的代码贴C语言
#include<stdio.h>
#include<math.h>
int main(void)
{
    double x0,x1,eps,n,f(),df();
    printf("plase input x0=\n");
    scanf("%lf",&x0);

    printf("plase input eps=\n");
    scanf("%lf",&eps);

    n=0;
......................
阅读全部 | 2012年10月28日 23:49
1
梁朝斌