You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Micke Nordin
6db1b1e943
|
2 years ago | |
---|---|---|
README.md | 5 years ago | |
cnumber.cpp | 5 years ago | |
cnumber.hpp | 2 years ago |
README.md
Compile and run
git clone https://github.com/mickenordin/fractions.git
git clone https://github.com/mickenordin/complex-numbers.git
cd complex-numbers
g++ -o cnumber cnumber.cpp
./cnumber
Output
a = 3+2i
a* = 3-2i
a*a* = 13
b = 4-3i
b* = 4+3i
b*b* = 25
a + b = 7-i
(a + b)* = 7+i
a - b = -1+5i
(a - b)* = -1-5i
a * b = 18-i
(a * b)* = 18+i
a / b = (6/25)+(17/25)i
(a / b)* = (6/25)-(17/25)i