Generation

generate functionMon, 29 May 2023

Escribir un programa completo que acepte número de día, mes y año y lo visualice en el formato dd/mm/aa; por ejemplo, los valores 8, 10 y 1946 se visualizan como 8/10/46.

public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter the day: "); int day = sc.nextInt(); System.out.println("Enter the month: "); int month = sc.nextInt(); System.out.println("Enter the year: "); int year = sc.nextInt(); System.out.println("The date in required format is: "+day+"/"+month+"/"+year); }

Questions about programming?Chat with your personal AI assistant