Group
Advanced Classes in C#
Objective
- Create a ComplexNumber class with private attributes for the real and imaginary parts.
- Implement a constructor to initialize these attributes.
- Implement getter and setter methods for both attributes.
- Define a ToString method to display the complex number in the format (real, imaginary).
- Implement a GetMagnitude method to calculate the magnitude of the complex number.
- Implement an Add method that takes another ComplexNumber as a parameter and returns the sum of both.
- In the Main method, create instances of ComplexNumber, display their values, compute their magnitude, and add them together.
A complex number has two parts: the real part and the imaginary part. In a number such as a+bi (2-3i, for example), the real part would be "a" (2) and the imaginary part would be "b" (-3).
Create a class ComplexNumber with:
- A constructor to set the values for the real part and the imaginary part.
- Setters and getters for both.
- A method ToString, which would return "(2,-3)".
- A method GetMagnitude to return the magnitude of the complex number (square root of a² + b²).
- A method Add, to sum two complex numbers (the real part will be the sum of both real parts, and the imaginary part will be the sum of both imaginary parts).
Create a test program to try these capabilities.
Example C# Exercise
Show C# Code
using System;
// Class to represent a complex number
class ComplexNumber
{
// Private attributes for the real and imaginary parts
private double real;
private double imaginary;
// Constructor to initialize the complex number with given values
public ComplexNumber(double real, double imaginary)
{
this.real = real;
this.imaginary = imaginary;
}
// Getter and setter for the real part
public double GetReal() { return real; }
public void SetReal(double value) { real = value; }
// Getter and setter for the imaginary part
public double GetImaginary() { return imaginary; }
public void SetImaginary(double value) { imaginary = value; }
// Method to return the complex number as a string in the format "(real, imaginary)"
public override string ToString()
{
return $"({real}, {imaginary})";
}
// Method to calculate the magnitude of the complex number
public double GetMagnitude()
{
return Math.Sqrt(real * real + imaginary * imaginary);
}
// Method to add two complex numbers
public ComplexNumber Add(ComplexNumber other)
{
return new ComplexNumber(this.real + other.real, this.imaginary + other.imaginary);
}
}
// Main program
class Program
{
static void Main()
{
// Create two complex numbers
ComplexNumber num1 = new ComplexNumber(2, -3);
ComplexNumber num2 = new ComplexNumber(4, 5);
// Display the complex numbers
Console.WriteLine("First Complex Number: " + num1);
Console.WriteLine("Second Complex Number: " + num2);
// Calculate and display the magnitude of each complex number
Console.WriteLine("Magnitude of First Complex Number: " + num1.GetMagnitude());
Console.WriteLine("Magnitude of Second Complex Number: " + num2.GetMagnitude());
// Add the two complex numbers and display the result
ComplexNumber sum = num1.Add(num2);
Console.WriteLine("Sum of Complex Numbers: " + sum);
}
}
Output
First Complex Number: (2, -3)
Second Complex Number: (4, 5)
Magnitude of First Complex Number: 3.605551275463989
Magnitude of Second Complex Number: 6.4031242374328485
Sum of Complex Numbers: (6, 2)