Advertisement
JoseLargo

p1e1

Nov 10th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1.  
  2. package p1e1;
  3.  
  4. import java.util.Scanner;
  5.  
  6. public class P1e1 {
  7.  
  8.  
  9.     public static void main(String[] args) {
  10.         Scanner sc= new Scanner(System.in);
  11.         int edad;
  12.         double estatura;
  13.        
  14.         System.out.print("Introduzca su edad ");
  15.         edad=sc.nextInt();
  16.         System.out.print("Introduzca su estatura en metros ");
  17.         estatura=sc.nextDouble();
  18.         System.out.println("Su edad es: "+edad+" años y su estatura: "+estatura+" metros");
  19.        
  20.     }
  21.    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement