Advertisement
cardel

JavaScript pedir numeros

Mar 18th, 2012
475
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <html>
  2.     <head>
  3.     </head>
  4.     <body>
  5.         <h1>Suma de dos numeros</h1>
  6.         <script>
  7.             var numeroInicial = prompt("Ingrese el primer numero", 0);
  8.             var numeroFinal = prompt("Ingrese el segundo numero", 0);
  9.            
  10.             //parseFloat("texto") transforma una cadena en un numero
  11.             var resultado = parseFloat(numeroInicial)+parseFloat(numeroFinal);
  12.            
  13.             alert("La suma entre "+numeroInicial+" y "+numeroFinal+" es: "+resultado);
  14.             document.write("La suma entre "+numeroInicial+" y "+numeroFinal+" es: "+resultado);
  15.         </script>
  16.     </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement