Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Arithmetic-Complex/11l/arithmetic-complex.11l
Normal file
12
Task/Arithmetic-Complex/11l/arithmetic-complex.11l
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
V z1 = 1.5 + 3i
|
||||
V z2 = 1.5 + 1.5i
|
||||
print(z1 + z2)
|
||||
print(z1 - z2)
|
||||
print(z1 * z2)
|
||||
print(z1 / z2)
|
||||
print(-z1)
|
||||
print(conjugate(z1))
|
||||
print(abs(z1))
|
||||
print(z1 ^ z2)
|
||||
print(z1.real)
|
||||
print(z1.imag)
|
||||
Loading…
Add table
Add a link
Reference in a new issue