Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Sax - Xavier Fernando Sánchez Díaz
- 1540717 - Taller de Programación Orientada a Objetos */
- import java.util.Scanner;
- public class suma{
- public static void main(String[]ar){
- Scanner teclea=new Scanner(System.in);
- int n1, n2, n3, n4;
- System.out.print("Introduzca dos números enteros a continuación: ");
- n1 = teclea.nextInt();
- n2 = teclea.nextInt();
- System.out.print("La suma es ");
- System.out.print(n1+n2);
- System.out.print("\nEl producto es ");
- System.out.print(n1*n2);
- System.out.println("\nAwesome dood. Ahora dame otros 4 números enteros:\n");
- n1 = teclea.nextInt();
- n2 = teclea.nextInt();
- n3 = teclea.nextInt();
- n4 = teclea.nextInt();
- System.out.print("La suma de los dos primeros es ");
- System.out.print(n1+n2);
- System.out.print("\nEl producto de los últimos dos es ");
- System.out.print(n3*n4);
- System.out.println("\n¡Eso es todo!. Ahora dame otros 4 números enteros: \n");
- n1 = teclea.nextInt();
- n2 = teclea.nextInt();
- n3 = teclea.nextInt();
- n4 = teclea.nextInt();
- System.out.print("La suma de los 4 números recién ingresados es ");
- System.out.print(n1+n2+n3+n4);
- System.out.print("\nSu media es ");
- System.out.print((n1+n2+n3+n4)/4);
- System.out.println("\nK', thx bye!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement