-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
42 lines (25 loc) · 1000 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// using System;
// public class Complex{
// // public int Real{get;}
// public int Imaginary{get;}
// public double Modulus => Math.Sqrt(Real * Real + Imaginary * Imaginary);
// public double Argument => Math.Atan2(Imaginary, Real);
// public Complex(int real, int imaginary)
// {
// Real = real;
// Imaginary = imaginary;
// }
// public static Complex operator +(Complex a, Complex b){
// return new Complex(a.Real +b.Real, a.Imaginary + b.Imaginary);
// public static Complex operator -(Complex a, Complex b){
// return new Complex(a.Real - b.Real, a.Imaginary - b.Imaginary);
// }
// }
// public static Complex operator *(Complex a, Complex b){
// return new Complex(a.Real * b.Real - a.Imaginary * b.Imaginary, a.Real * b.Imaginary +)
// }
// class Program{
// static void Main(string[] args)
// {
// }
// }