虚数の計算
学校の課題で虚数(Complex Number)の計算をしなければいけません。
虚数はi^2=-1, i^3=-i... ですよね? それをどういう風に表現したらいいのかまったくわからないのですが、その部分のヒントいただけないでしょうか?
一応、下のが問題です、、、、。
Write a class called complex to enable operations on complex numbers through the overloaded >> and << operators (to read in and output complex numbers).
Complex numbers are of the form: realPart + imaginaryPart*i, where i =sqrt(-1)
So overload <<, >>, +, -, *, ==, != to perform the appropriate operations.
i.e. Complex1 + Complex2 should add the real parts of both numbers and the two complex parts of both numbers.
お礼
ありがとうございます