sábado, 22 de octubre de 2016

[OCTUBRE 11 2016]

EJERCICIOS DE CLASE

1.
<html>
<head><title> de clase 5</title></head>
<body>
<p> de 100 en 100 hasta llegar a 1000</p>
</body>
 <script>
for( i=1; i<=10; i++){
document.write((i*100)+ "<hr>" );
}
 </script>
 </html>


2.
<html>
<head><title> de clase</title></head>
 <script>
 var a = prompt("digite el primer numero");
 var b = prompt("digite el segundo numero");
 var c = (a + b)
 alert(c);
 </script>
 </html>





<html>
<head><title> de clase.2</title></head>

 <script>
  
 var a = prompt("digite el primer numero");
 var b = prompt("digite el segundo numero");
  alert(parseInt(a)+ parseInt(b));
 </script>
 </html>


de prompt

<html>
<head>
</head>
<body>
<script type="text/javascript">
  var nombre;
  var nota;
  nombre=prompt('Ingrese nombre:','');
  nota=prompt('Ingrese su nota:','');
  if (nota>=4)
  {
    document.write(nombre+' esta aprobado con un '+nota);
  }
</script>
</body>
</html>




































No hay comentarios.:

Publicar un comentario