王源666 2021-09-21 16:15 采纳率: 25%
浏览 265
已结题

大一新生c语言编程题不会写啊

img


怎么把他这个不同的结果写出来啊,而且这个虚数用什么数据类型啊

  • 写回答

1条回答 默认 最新

  • 广大菜鸟 2021-09-21 20:17
    关注
    #include "stdio.h"
    #include<math.h>
    #include<stdlib.h>
    typedef struct complex
    {
        double _Val[2]; //real、img
    }complex;
    complex* getResult(double a,double b,double c,complex*res){
        double delta=b*b-4*a*c;
        if(delta>=0){
            res[0]._Val[0] = (-b+sqrt(delta))/(2*a);
            res[0]._Val[1] = 0;
            res[1]._Val[0] = (-b-sqrt(delta))/(2*a);
            res[1]._Val[1] = 0;
        }else{
            double absDelta = -delta;
            double tmp = sqrt(absDelta)/(2*a);
            res[0]._Val[0] = -b/(2*a);
            res[0]._Val[1] = tmp;
            res[1]._Val[1] = -tmp;
            res[1]._Val[0] = -b/(2*a);
        }
        return res;
    }
    int main(){
        double a,b,c;
        complex res[2];
        while(scanf("%lf,%lf,%lf",&a,&b,&c)!=EOF){
            if(a==0){
                printf("The equation is not a quadratic\n");
                continue;
            }
            getResult(a,b,c,res);
            if(res[0]._Val[1]!=0){//复数
            printf("The quation has complex real roots:\n");
            printf("%.4lf+%.4lfi\n",res[0]._Val[0],res[0]._Val[1]);
            printf("%.4lf%.4lfi\n",res[1]._Val[0],res[1]._Val[1]);
            }else if(res[0]._Val[0]!=res[1]._Val[0]){        
                printf("The quation has distinct real roots:%.4lf and %.4lf\n",res[0]._Val[0],res[1]._Val[0]);
            }else{
                printf("The quation has two equal real roots:%.4lf\n",res[0]._Val[0]);
            }     
        }
        system("pause");
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月29日
  • 已采纳回答 9月21日
  • 创建了问题 9月21日

悬赏问题

  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况
  • ¥15 画两个图 python或R