| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 695 人关注过本帖
标题:遇到难题,为什么运行没有错误,但是输入了没有输出
取消只看楼主 加入收藏
梁朝斌
Rank: 4
等 级:业余侠客
帖 子:192
专家分:288
注 册:2012-10-21
结帖率:100%
收藏
已结贴  问题点数:10 回复次数:5 
遇到难题,为什么运行没有错误,但是输入了没有输出
#include<stdio.h>
#include<math.h>
#define eps
#define N 4
int main(void)
{
    double a,b,f(),h;
    int i,n,m;
    printf("请输入a和b的值:\n");
    scanf("%lf %lf",&a,&b);
    if(f(a)*f(b)>0)
    {
        printf("此方程无解,程序终止!\n");
        return 0;
    }
    do
    {
    m=0;
    x=a;
    h=(a+b)/N;
    for(i=1;i<=n;i++)
    {
        if(fabs(f(x))<eps)
            printf("x=%d",x);
        else
        x=x+h;
    }
    m=m+1;
    h=h/2;
    }
    while(m<=10);
    return 0;
}
    double f(double x)
    {
        double y;
    y=x*x*x-1.8*x*x+0.15x+0.65;
    return y;
    }
   
搜索更多相关主题的帖子: return include 
2012-10-28 19:23
梁朝斌
Rank: 4
等 级:业余侠客
帖 子:192
专家分:288
注 册:2012-10-21
收藏
得分:0 
我用c语言编的,确实没有错误

菜鸟也疯狂
2012-10-28 22:30
梁朝斌
Rank: 4
等 级:业余侠客
帖 子:192
专家分:288
注 册:2012-10-21
收藏
得分:0 
#include<stdio.h>
#include<math.h>
int main(void)
{
    double i,n,m,step,N,eps,x0,x1,x2,f(double);
    printf("plase input x0= \n");
    scanf("%lf",&x0);

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

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

        if(f(x0)*f(x1)>0)
        {
            printf("此方程无解,程序终止!\n");
            return 0;
        }
        m=0;
    do
    {
        x2=x0;
        step=(x1-x0)/N;
        for(i=0;i<=n;i++)
        {
            if(fabs(f(x2))<=eps)
            {
                printf("x2=%lf",x2);
                return 0;
            }
            
                x2=x2+N;
            
        }
        m++;
        N=N/2;
    }
    while(m<=10);
    return 0;
}
double f(double x)
{
    double y;
    y=(pow(x,3)-1.8*pow(x,2)+0.15*x+0.65);
    return y;
}

菜鸟也疯狂
2012-10-28 22:39
梁朝斌
Rank: 4
等 级:业余侠客
帖 子:192
专家分:288
注 册:2012-10-21
收藏
得分:0 
不好意思,由于我的大意,开始的代码发错了,这次没错误啦

菜鸟也疯狂
2012-10-28 22:40
梁朝斌
Rank: 4
等 级:业余侠客
帖 子:192
专家分:288
注 册:2012-10-21
收藏
得分:0 
好的,我又解决了一个问题啊

菜鸟也疯狂
2012-10-28 23:25
梁朝斌
Rank: 4
等 级:业余侠客
帖 子:192
专家分:288
注 册:2012-10-21
收藏
得分:0 
#include<stdio.h>
#include<math.h>
int main(void)
{
    double i,n,m,step,N,eps,x0,x1,x2,f(double);
    printf("please input x0= \n");
    scanf("%lf",&x0);

    printf("please input x1=\n");
    scanf("%lf",&x1);
   
    printf("please input input N=\n");
    scanf("%lf",&N);

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

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

        if(f(x0)*f(x1)>0)
        {
            printf("此方程无解,程序终止!\n");
            return 0;
        }
        m=0;
    do
    {
        x2=x0;
        step=(x1-x0)/N;
        for(i=0;i<=n;i++)
        {
            if(fabs(f(x2))<=eps)
            {
                printf("x2=%lf",x2);
                return 0;
            }
            
                x2=x2+N;
            
        }
        m++;
        N=N/2;
    }
    while(m<=10);
    return 0;
}
double f(double x)
{
    double y;
    y=(pow(x,3)-1.8*pow(x,2)+0.15*x+0.65);
    return y;
}
问题已经解决了,谢谢大家

菜鸟也疯狂
2012-10-28 23:32
快速回复:遇到难题,为什么运行没有错误,但是输入了没有输出
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.028947 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved