-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCOMPLEX NUMBER PROBLEM.txt
62 lines (50 loc) · 1.34 KB
/
COMPLEX NUMBER PROBLEM.txt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/******************
* Following is the main function we are using internally.
* Refer this for completing the ComplexNumbers class
*
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int real1 = s.nextInt();
int imaginary1 = s.nextInt();
int real2 = s.nextInt();
int imaginary2 = s.nextInt();
ComplexNumbers c1 = new ComplexNumbers(real1, imaginary1);
ComplexNumbers c2 = new ComplexNumbers(real2, imaginary2);
int choice = s.nextInt();
if(choice == 1) {
// Add
c1.plus(c2);
c1.print();
}
else if(choice == 2) {
// Multiply
c1.multiply(c2);
c1.print();
}
else {
return;
}
}
******************/
public class ComplexNumbers {
// Complete this class
private int real,img;
public ComplexNumbers(int r, int i){
this.real = r;
this.img = i;
}
public void plus(ComplexNumbers c){
this.real = this.real + c.real;
this.img = this.img + c.img;
}
public void multiply(ComplexNumbers c){
int real = (this.real * c.real) - (this.img * c.img);
int img = (this.real * c.img) + (this.img * c.real);
this.real = real;
this.img = img;
}
public void print(){
System.out.println(real+" + i"+
img);
}
}