Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

fabricioss

nos exercícios do livro C# Como Programar

Recommended Posts

como seria o exercício??? posta ele e as dúvidas...Falows

Compartilhar este post


Link para o post
Compartilhar em outros sites

Segue o exercício.8.3 Create a class called Complex for performing arithmetic with complex numbers. Write a driver program to test your class.Complex numbers have the form:realPart + imaginaryPart * iwhere i is sqrt(-1)Use floating-point variables to represent the private data of the class. Provide a constructor that enables an object of this class to be initialized when it is declared. Provide a no-argument constructor with default values in case no initializers are provided. Provide public methods for each of the following:a) Addition of two Complex numbers. The real parts are added together and the imaginary parts are added together. B) Subtraction of two Complex numbers. The real part of the right operand is subtracted from the real part of the left operand and the imaginary part of the right operand is subtracted from the imaginary part of the left operand.c) Printing of Complex numbers in the form (a, B) , where a is the real part and b is the imaginary part.Algumas das minhas dúvidas.1. Pq eu devo usar variáveis float?2. Qtas variáveis eu preciso? Seriam 2 para as variáveis partereal e 2 para as variáveis parteimaginária, total 4?3. Como devo entrar com os dados?

Compartilhar este post


Link para o post
Compartilhar em outros sites

cara, pelo q eu entendi seria +ou- isso q eu fiz, mas não entendo muito de ingles... pode ser q esteja faltando alguma coisa!!!

 

public class Complex	{  float realPart;  float imaginaryPart;  public Complex(int a, int b)  { 	 realPart = a; 	 imaginaryPart = b;  }  public float Addition()  { 	 return (realPart+imaginaryPart);  }  public float Subtraction()  { 	 return (realPart-imaginaryPart);  }  public void Printing()  { 	 MessageBox.Show("a=" + realPart.ToString() + "\nb=" + imaginaryPart.ToString());  }	}

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.