Jump to content
Fórum Script Brasil
  • 0

Ajuda para um iniciante


onorax

Question

ola, esse é meu primeiro codigo então não riam da minha cara se eu tiver feito muita merda

o que o codigo deveria fazer:

ele deve pedir a velocidade de dowload por segundo que o cara faz, pedir o tamanho do arquivo em mb e calcular quanto tempo ira demorar

eu fiz assim:

java script:

function calculaV(){
var vDowSeg,tArq,resultado;

vDowSeg = document.getElementById.('velocidade').value;
tArq = document.getElementById.('tamanho').value;
resultado = tArq*60*60/1024;

alert(resultado);

}
a formula ta errada, se puderem me ajudar nela tb HTML:
<html>
    <head><title>Calculo</title>
    &lt;script language="javascript" src="calculo.js">
    </script>
    </head>
    
    <body>
    <label>Digite a media de velocidade por segundo que voce faz o seu download</label><br>
    <input type="text" id="velocidade"><br><br>
    <label>Digite o tamanho do arquivo em megabytes</label><br>
    <input type="text" id="tamanho"><br>
    <input type="button" value="Calcular" onClick="calculaV()">
    
    </body>
</html>

me ajudem aew vlw

Edited by onorax
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Tem um ponto a mais no seu código, tente:

function calculaV(){
var vDowSeg,tArq,resultado;

vDowSeg = document.getElementById('velocidade').value;
tArq = document.getElementById('tamanho').value;
resultado = tArq*60*60/1024;

alert(resultado);

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...