Untitled

 avatar
SAlexoX
java
a year ago
1.4 kB
4
Indexable
package EjerciciosPractica;

import java.util.Scanner;

public class Ejercicio07Meses {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		System.out.println("Escribe un numero del 1 al 12");
		// Aqui se convierte una variable a entero
		int num1 = sc.nextInt();
//Se crea un switch que es para registrar las distintas opciones via teclado
		switch (num1) {
		case 1:
			System.out.println(" Tu opción es Enero ");
			break;
		case 2:
			System.out.println(" Tu opción es Febrero ");
			break;
		case 3:
			System.out.println(" Tu opción es Marzo ");
			break;
		case 4:
			System.out.println(" Tu opción es Abril ");
			break;
		case 5:
			System.out.println(" Tu opción es Mayo ");
			break;
		case 6:
			System.out.println(" Tu opción es Junio ");
			break;
		case 7:
			System.out.println(" Tu opción es Julio ");
			break;
		case 8:
			System.out.println(" Tu opción es Agosto ");
			break;
		case 9:
			System.out.println(" Tu opción es Septiembre ");
			break;
		case 10:
			System.out.println(" Tu opción es Octubre ");
			break;
		case 11:
			System.out.println(" Tu opción es Noviembre ");
			break;
		case 12:
			System.out.println(" Tu opción es Diciembre ");
			break;
		default:
			System.out.println("Escribe lo que te he pedido");
		}
	}
}