Advertisement
Sax

Programas 01 - POO [13.09.11]

Sax
Sep 13th, 2011
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.33 KB | None | 0 0
  1. /* Sax - Xavier Fernando Sánchez Díaz
  2. 1540717 - Taller de Programación Orientada a Objetos */
  3.  
  4. import java.util.Scanner;
  5. public class suma{
  6.        public static void main(String[]ar){
  7.        Scanner teclea=new Scanner(System.in);
  8.        int n1, n2, n3, n4;
  9.        
  10.        System.out.print("Introduzca dos números enteros a continuación: ");
  11.        
  12.        n1 = teclea.nextInt();
  13.        n2 = teclea.nextInt();
  14.        
  15.        System.out.print("La suma es ");
  16.        System.out.print(n1+n2);
  17.        System.out.print("\nEl producto es ");
  18.        System.out.print(n1*n2);
  19.        System.out.println("\nAwesome dood. Ahora dame otros 4 números enteros:\n");
  20.        
  21.        n1 = teclea.nextInt();
  22.        n2 = teclea.nextInt();
  23.        n3 = teclea.nextInt();
  24.        n4 = teclea.nextInt();
  25.        
  26.        System.out.print("La suma de los dos primeros es ");
  27.        System.out.print(n1+n2);
  28.        System.out.print("\nEl producto de los últimos dos es ");
  29.        System.out.print(n3*n4);
  30.        System.out.println("\n¡Eso es todo!. Ahora dame otros 4 números enteros: \n");
  31.        
  32.        n1 = teclea.nextInt();
  33.        n2 = teclea.nextInt();
  34.        n3 = teclea.nextInt();
  35.        n4 = teclea.nextInt();
  36.        
  37.        System.out.print("La suma de los 4 números recién ingresados es ");
  38.        System.out.print(n1+n2+n3+n4);
  39.        System.out.print("\nSu media es ");
  40.        System.out.print((n1+n2+n3+n4)/4);
  41.        System.out.println("\nK', thx bye!");
  42.        
  43.        }
  44.        }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement