鱼C论坛

 找回密码
 立即注册
查看: 1092|回复: 2

这个代码错误在哪

[复制链接]
发表于 2023-12-3 19:19:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
using namespace std;
class complex
{
public:
        double real, image;
        complex(double r = 0, double i = 0)
        {
                real = r;
                image = i;
        }
        complex add();
        void show()
        {
                if (image > 0)
                {
                        if (image == 1)
                        {
                                cout << real << "+" << "i" << endl;
                        }
                        else
                                cout << real << "+" << image << "i" << endl;
                }
                else if (image < 0)
                {
                        if (image == -1)
                        {
                                cout << real << "-" << endl;
                        }
                        else
                                cout << real << "-" << image << "i" << endl;
                }
        }
};
complex add(const complex& c)
{
        complex temp;
        temp.real = this->real + c.real;
        temp.image = this->image + c.image;
        return temp;
}
int main()
{
        complex c1(1, 1), c2(2, 4);
        c1.show();
        c2.show();
        complex c3=c1.
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-3 19:19:58 | 显示全部楼层
这段代码有一些问题。首先,在 `#include` 头文件之后应该加上 `<iostream>`,因为我们使用了 `cout` 和 `endl`。

其次,在类 `complex` 中,函数 `add()` 的声明和实现都没有写出来。你可以添加一个返回类型为 `complex` 的 `add()` 函数,并在其中实现两个复数相加的操作。

然后,在 `show()` 函数中,你只写了部分代码,没有完整的输出语句。你可以使用 `cout` 语句输出实部和虚部的值。

最后,在 `main()` 函数中,你需要创建 `complex` 对象,并调用 `add()` 函数进行相加操作,然后调用 `show()` 函数输出结果。

以下是修改后的代码示例:
#include <iostream>using namespace std;class complex{public:    double real, image;    complex(double r = 0, double i = 0)    {        real = r;        image = i;    }    complex add(complex c)    {        complex result;        result.real = real + c.real;        result.image = image + c.image;        return result;    }    void show()    {        cout << "Real part: " << real << endl;        cout << "Imaginary part: " << image << endl;    }};int main(){    complex c1(1, 2);    complex c2(3, 4);    complex sum = c1.add(c2);    sum.show();    return 0;}
在上述代码中,我们定义了一个 `complex` 类,其中包含了实部和虚部的值。我们添加了一个 `add()` 函数,接受一个 `complex` 对象作为参数,并返回一个新的 `complex` 对象,表示两个复数相加的结果。在 `show()` 函数中,我们使用 `cout` 语句输出实部和虚部的值。

在 `main()` 函数中,我们创建了两个 `complex` 对象,并调用其中一个对象的 `add()` 函数将其与另一个对象相加。然后,我们将结果赋给一个新的 `complex` 对象 `sum`,并调用 `show()` 函数输出结果。

请注意,为了避免与标准库中的 `complex` 类重名,我们将自定义的类名称改为了 `MyComplex`。

以上回复来自 -- ChatGPT(FishC官方接口),如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-12-3 19:37:58 | 显示全部楼层
#include<iostream>
using namespace std;
class complex
{
        public:
        double real, image;
        complex(double r = 0, double i = 0)
        {
            real = r;
            image = i;
        }
        complex add(const complex& c); //定义时要写上参数 
        void show()
        {
            if (image > 0)
            {
                if (image == 1)
                {
                    cout << real << "+" << "i" << endl;
                }
                else
                    cout << real << "+" << image << "i" << endl;
                }
            else if (image < 0)
            {
                if (image == -1)
                {
                    cout << real << "-" << endl;
                }
                else
                    cout << real << "-" << image << "i" << endl;
            }
        }
};
complex complex::add(const complex& c) // 在结构体/类外定义成员函数时,要用::标明其从属关系 
{
    complex temp;
    temp.real = this->real + c.real;
    temp.image = this->image + c.image;
    return temp;
}
int main()
{
    complex c1(1, 1), c2(2, 4);
    c1.show();
    c2.show();
    //complex c3=c1.
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 03:22

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表