#include <stdio.h>

int deporte;
main() {

	printf("\n Introduce un número del 1 al 4, para probar suerte y decidir cuál podría ser tu deporte ");
	scanf("%d", &deporte);
	
	switch(deporte) { 
		case 1:
		     printf("\n Podrías elegir fútbol");
		     printf("\n");
		     break;
		case 2:
		     printf("\n Podrías elegir baloncesto");
		     printf("\n");
		     break;
		case 3:
		     printf("\n Podrías elegir rugby");
		     printf("\n");
		     break;
		case 4:
		     printf("\n Podrías elegir tenis");
		     printf("\n");
		     break;
		default:
		     printf("\n Error, opcion incorrecta");
		     break;
	}
system("pause");
}