اعداد مرکب

parmis lili

عضو جدید
اعداد مختلط(complex) و اعمال جمع وتفریق روی آنها است، را انجام دهید.
(Complex Numbers) Create a classcalled Complex for performing arithmetic with complex numbers. Complexnumbers have the form
realPart + imaginaryPart*i

where i is

Write a program to test your class.Use floating-point variables to represent the private data ofthe class. Provide a constructor that enables an object of this class to beinitialized when it is declared. Provide a no-argument constructor with default values incase no initializers are provided. Provide public methods that perform the followingoperations:

  1. Add two Complex numbers: The real parts are added together and the imaginary parts are added together.
  2. Subtract 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.
Print Complex numbers in the form (a, b), where a is the real part and b is the imaginary part.
 
Similar threads
Thread starter عنوان تالار پاسخ ها تاریخ
P O U R I A اعداد در java Java 4
Sarp انجام عمليات رياضي با اعداد بسيار بزرگ در جاوا Java 0

Similar threads

بالا