Complexos
Publicado por jorgyano bruno 04/09/2007
[ Hits: 5.045 ]
Classe que realiza operações como adição, subtração, multiplicação, divisão, multiplicação por um escalar e divisão por escalar com números complexos.
/* Jorgyano Bruno de Oiveira Vieira */ #include <iostream> #include<math.h> using namespace std; class Complexo{ private: float real; float img; public: Complexo(); Complexo(float _real, float _img); void print(); void set(float,float); void conjugado(); Complexo operator+(Complexo); Complexo operator-(Complexo); Complexo operator*(Complexo); Complexo operator*(int); Complexo operator/(Complexo); Complexo operator/(int); }; Complexo::Complexo() { real=0; img=0; } Complexo::Complexo(float _real, float _img){ real = _real; img = _img; } void Complexo::print() { cout << real << " + " << img << "i" << endl; } void Complexo::set(float rl, float im) { real = rl; img = im; } void Complexo::conjugado(){ img = (-1)*img; } Complexo Complexo::operator+(Complexo b) { Complexo c; c.real = real + b.real; c.img = img + b.img; return c; } Complexo Complexo::operator-(Complexo b) { Complexo c; c.real = real - b.real; c.img = img - b.img; return c; } Complexo Complexo::operator*(Complexo b){ Complexo c; c.real = (real*b.real) - (img*b.img); c.img = (real*b.img) + (img*b.real); return c; } Complexo Complexo::operator*(int b){ Complexo c; c.real = b*real; c.img = b*img; return c; } Complexo Complexo::operator/(Complexo b){ Complexo c; c.real = (real*b.real) + (img*b.img)/(pow(b.img,b.img) + pow(b.real,b.real)); c.img = (b.real*img) - (real*b.img)/(pow(b.img,b.img) + pow(b.real,b.real)); } Complexo Complexo::operator/(int b){ Complexo c; c.real = b/real; c.img = b/img; return c; } int main(){ Complexo a(4,-5), b, c; a.conjugado(); b = a; c=a+b; cout<< "a+b = ";c.print(); c=a/b; cout << "a/b = ";c.print(); c=a*b; cout<<"a*b = ";c.print(); c = a*3+b/2; cout <<"a*3+b/2 = ";c.print(); system("pause"); }
Nenhum coment�rio foi encontrado.
Aprenda a Gerenciar Permissões de Arquivos no Linux
Como transformar um áudio em vídeo com efeito de forma de onda (wave form)
Como aprovar Pull Requests em seu repositório Github via linha de comando
Visualizar arquivos em formato markdown (ex.: README.md) pelo terminal
Dando - teoricamente - um gás no Gnome-Shell do Arch Linux
Como instalar o Google Cloud CLI no Ubuntu/Debian
Mantenha seu Sistema Leve e Rápido com a Limpeza do APT!
Procurando vídeos de YouTube pelo terminal e assistindo via mpv (2025)
Alguém já usou o framework Avalonia para desenvolver interfaces de usu... (4)
Ajuda Pra Melhoria do NFTABLES. (8)
Sinto uma leve lentidão ao arrastar, miniminizar e restauras as janela... (2)
Pastas da raiz foram para a área de trabalho [RESOLVIDO] (7)