package numeroscomp;
import java.util.Scanner;
public class NumerosComp{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
complejos c = new complejos();
System.out.println("Ingrese un numero real");
c.real1 = sc.nextDouble();
System.out.println("Ingrese un numero imaginario");
c.imaginario1 = sc.nextDouble();
System.out.println("El numero complejo es" + c.desplegar());
System.out.println("Ingrese el primer numero real que sumara ");
c.real1 = sc.nextDouble();
System.out.println("Ingrese el primer numero real que sumara ");
c.real2 = sc.nextDouble();
System.out.println("Ingrese el primer numero imaginario que sumara ");
c.imaginario1 = sc.nextDouble();
System.out.println("Ingrese el primer numero imaginario que sumara ");
c.imaginario2 = sc.nextDouble();
System.out.println("El resultado de la suma es" + c.suma());
System.out.println("Ingrese el primer numero real que restara ");
c.real1 = sc.nextDouble();
System.out.println("Ingrese el primer numero real que restara ");
c.real2 = sc.nextDouble();
System.out.println("Ingrese el primer numero imaginario que restara ");
c.imaginario1 = sc.nextDouble();
System.out.println("Ingrese el primer numero imaginario que restara ");
c.imaginario2 = sc.nextDouble();
System.out.println("El resultado de la resta es" + c.resta());
System.out.println("Ingrese un numero real para multiplicar por el numero complejo ");
c.real1 = sc.nextDouble();
System.out.println("Ingrese la parte real del numero complejo ");
c.real3 = sc.nextDouble();
System.out.println("Ingrese la parte imaginaria del numero complejo ");
c.imaginario1 = sc.nextDouble();
System.out.println("El resultado de la multiplicacion es" + c.multiplicacion());
System.out.println("Ingrese un numero real para dividir por el numero complejo ");
c.real1 = sc.nextDouble();
System.out.println("Ingrese la parte real del numero complejo ");
c.real3 = sc.nextDouble();
System.out.println("Ingrese la parte imaginaria del numero complejo ");
c.imaginario1 = sc.nextDouble();
System.out.println("El resultado de la division es" + c.division());
}
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.