Sha256: b528bd5d6be2f318a4cad688cb53ac5167ef4af149f6230906b12c65151c07f3
Contents?: true
Size: 1.3 KB
Versions: 158
Compression:
Stored size: 1.3 KB
Contents
using System; public struct ComplexNumber { public ComplexNumber(double real, double imaginary) { } public double Real() { throw new NotImplementedException("You need to implement this function."); } public double Imaginary() { throw new NotImplementedException("You need to implement this function."); } public ComplexNumber Mul(ComplexNumber other) { throw new NotImplementedException("You need to implement this function."); } public ComplexNumber Add(ComplexNumber other) { throw new NotImplementedException("You need to implement this function."); } public ComplexNumber Sub(ComplexNumber other) { throw new NotImplementedException("You need to implement this function."); } public ComplexNumber Div(ComplexNumber other) { throw new NotImplementedException("You need to implement this function."); } public double Abs() { throw new NotImplementedException("You need to implement this function."); } public ComplexNumber Conjugate() { throw new NotImplementedException("You need to implement this function."); } public ComplexNumber Exp() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
158 entries across 158 versions & 1 rubygems