<!Dado un numero entre 1 y 12, indicar el mes>
<html>
<head>
</head>
<body>
<script language="JavaScript">
var A;
A = prompt('Ingrese primer número:','');
A = parseInt(A);
if(A>=1 && A<=12){
if(A==1)
document.write('Estamos en ENERO');
else
if(A==2)
document.write('Estamos en FEBRERO');
else
if(A==3)
document.write('Estamos en MARZO');
else
if(A==4)
document.write('Estamos en ABRIL');
else
if(A==5)
document.write('Estamos en MAYO');
else
if(A==6)
document.write('Estamos en JUNIO');
else
if(A==7)
document.write('Estamos en JULIO');
else
if(A==8)
document.write('Estamos en AGOSTO');
else
if(A==9)
document.write('Estamos en SEPTIEMBRE');
else
if(A==10)
document.write('Estamos en OCTUBRE');
else
if(A==11)
document.write('Estamos en NOVIEMBRE');
else
document.write('Estamos en DICIEMBRE');
}
else
document.write('Error en dato introducido');
</script>
</body>
</html>
No hay comentarios:
Publicar un comentario