Primer Parcial
Practica 1 public class main { public static void main(String[] args) { // TODO Auto-generated method stub operacion obj = new operacion (); obj.suma (); } } import java.util.Scanner; public class operacion { public static void suma(){ Scanner leer = new Scanner(System.in); int a; int b; int resultado; System.out.println("Escribe un numero"); a = leer.nextInt(); System.out.println("Escribe el segundo numero"); b = leer.nextInt(); resultado = a + b; System.out.println("Este es tu resultado " + resultado); } } Practica 2 public class clase_pricipal { public static void main(String[] args) { // TODO Auto-generated method stub Segunda_clase obj = new Segunda_clase (); obj.integrantes (); Tercera_clase obj1 = new Ter...