| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 445 人关注过本帖
标题:问一个方程中的小问题
取消只看楼主 加入收藏
hehewei
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2009-12-24
结帖率:90%
收藏
已结贴  问题点数:20 回复次数:0 
问一个方程中的小问题
#include <stdio.h>
#include <math.h>

void main()
{
    float a,b,c,disc,x1,x2,realpart,imagpart;
    scanf("%f,%f,%f,%f",&a,&b,&c);
    printf("The equation");
    if(fabs(a) <= 1e-6)
        printf("is not a quadratic\n");
    else
    {
        disc = b*b - 4*a*c;
        if(fabs(disc) <= 1e-6)
        {
            printf("has two equal roots: %8.4f\n", -b/(2*a));

        }
        else
          if(disc > 1e-6)
          {
            x1 = (-b + sqrt(disc))/(2*a);
            x2 = (-b - sqrt(disc))/(2*a);
            printf("has distinct real roots: %8.4f and %8.4f\n",x1,x2);
          }
        else
        {
            realpart = -b/(2*a);
            imagpart = sqrt(-disc)/(2*a);
            printf("has complex roots: \n");
            printf("%8.4f + %8.4fi\n",realpart,imagpart);
            printf("%8.4f - %8.4fi\n",realpart,imagpart);
        }
            
    }
}

这个方程中的“1e-6”是什么意思啊???在数学中怎么表示的???
搜索更多相关主题的帖子: 方程 
2010-11-16 22:41
快速回复:问一个方程中的小问题
数据加载中...
 
   



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

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