Advertisement
chete

complejo

Mar 26th, 2014
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.08 KB | None | 0 0
  1. public class Complejos {
  2.  
  3.         private double x; //parte real del numero complejo
  4.         private double y; //parte imaginariadel numero complejo
  5.  
  6.         //constructor--> hay que crear constructor
  7.          // contador del numeros
  8.         public Complejos(double a, double b){
  9.             x=a; y=b;
  10.             numbObjetos++;
  11.             }
  12.        
  13.         //operaciones
  14.         //sumar
  15.             // estatica-----> public static Complejos sumar(Complejos Z1,Complejos Z2)
  16.             //                  Coplejos.suma(Z1,Z2)
  17.             // no estatica--> public Complejos suma (Complejos Z)
  18.             //                  Z1[this].suma(Z2)
  19.        
  20.         private static long numbObjetos;
  21.         public  Complejos suma (Complejos z){
  22.            
  23.            
  24.             return new Complejos(this.x+z.x,this.y+z.y);   
  25.         }
  26.         public Complejos resta (Complejos z){
  27.            
  28.             return new Complejos(this.x-z.x,this.y-z.y);
  29.        
  30.         }
  31.        
  32.         public Complejos division (Complejos z){
  33.            
  34.             double aux1 = (this.x*z.x-this.y*z.y)/(z.x*z.x+z.y*z.y);
  35.             double aux2 = (this.x*z.x+this.y*z.x)/(z.x*z.x+z.y*z.y);
  36.             return new Complejos(aux1,aux2);
  37.         }
  38.        
  39.         public double getReal() {
  40.             return x;
  41.         }
  42.         public double getImaginaria() {
  43.             return y;
  44.         }
  45.  
  46.  
  47.  
  48.  
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement