Advertisement
LightProgrammer000

Calculo_Idade

May 5th, 2020
1,576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.85 KB | None | 0 0
  1. package PEX_002;
  2.  
  3. import java.text.DateFormat;
  4. import java.text.SimpleDateFormat;
  5. import java.util.Date;
  6. import java.util.Scanner;
  7.  
  8. public class Ex_12
  9. {
  10.     public static void main(String args[])
  11.     {
  12.         int Novaidade;
  13.         int anodenascimento;
  14.        
  15.         Scanner ponte = new Scanner(System.in);
  16.        
  17.         System.out.print("# Digite seu ano de nascimento: ");
  18.         anodenascimento = ponte.nextInt();
  19.  
  20.         Novaidade =  ano_atual() - anodenascimento + 10;
  21.         System.out.println("# Idade do usuário daqui a 10 anos será: " + Novaidade);
  22.     }
  23.  
  24.     private static int ano_atual()
  25.     {
  26.         //DateFormat fmt = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
  27.         DateFormat fmt = new SimpleDateFormat("yyyy");
  28.         Date date = new Date();
  29.  
  30.         return Integer.parseInt(fmt.format(date));
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement