Bài tập về số phức

Bài tập về số phức | #include #include class Complex { public: Complex (int th=0,int a=0) //constructor { thuc=th; ao=a; } void Print() //ham xuat so phuc { if(thuc==0) { printf("%di",ao); } else { if(ao>0) { printf("%d+%di",thuc,ao); } else if(ao<0) printf("%d%di",thuc,ao); else printf("%d",thuc); } } // dinh nghia toan tu chong friend Complex operator*(const Complex& x,const Complex& y); friend Complex operator+(const Complex& x,const Complex& y); friend Complex operator-(const Complex& x,const Complex& y); private: int thuc,ao; }; //cai dat toan tu chong Complex operator*(const Complex& x,const Complex& y) { Complex z(****); return z; } Complex operator+(const Complex& x,const Complex& y) { Complex z(); return z; } Complex operator-(const Complex& x,const Complex& y) { Complex z(); return z; } int main() { Complex x(0,-3),y(4,5); ();printf("\n"); ();printf("\n"); Complex z; z=x+y; //tinh tong ();printf("\n"); z=x-y; //tinh tong ();printf("\n"); z=x*y; //tinh tich ();printf("\n"); getch(); return 0; }

Bấm vào đây để xem trước nội dung
TỪ KHÓA LIÊN QUAN
TÀI LIỆU MỚI ĐĂNG
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.