Ejercicio
Edad
Objetivo
Escriba un programa en java para preguntar al usuario por su edad (20, por ejemplo) y responda algo como "Parece menor de 20 años" (en lugar de 20, debe mostrar la edad que se ha ingresado).
Código de Ejemplo
// Importing the Scanner class to handle input from the useimport java.util.Scanner; // Import Scanner class for input
public class Program {
// Main entry point of the program
public static void main(String[] args) {
// Create a scanner object to read user input
Scanner scanner = new Scanner(System.in);
// Ask the user to input their age
System.out.print("Please enter your age: ");
// Read the user's input as an integer
int age = scanner.nextInt();
// Respond with a message based on the user's age
System.out.println("You look younger than " + age);
// Close the scanner to free up resources
scanner.close();
}
}