Jump to content


Photo

Dúvida Em Script


  • Faça o login para participar
1 reply to this topic

#1 eduardo_

eduardo_

    Turista

  • Usuários
  • 56 posts
  • Sexo:Não informado
  • Localidade:São Paulo - SP

Posted 14/10/2005, 16:19

A idéia desse script é mostrar em tabela, os números pares de 2 até 100.

Alguém pode achar o erro?
E me explicar..

Obrigado.

<html>
<head>
<title>Números pares de 2 a 100</title>
<style type="text/css">

td {font: 80% verdana; text-align: center; color:blue}

</style>
</head>

<body>

<table border="1" bordercolor="green" cellpadding="2" cellspacing="0"></table>
<tr bgColor="#cccccc" borderColorDark="#fcfcfc" borderColorLight="#999999"></tr>

<script type="text/javascript">

for(i = 2,i <= 100;i++)
{
if(i % 2 == 0)
{
if(i % 20 = 0)
{
document.write('<td>' + i + '</td></tr>');
if(1 < 100)

document.write('<tr bgColor=\"#cccccc"\"borderColorDark=\"#fcfcfc\"borderColorLght="999999"');
}
}
}

</script>


</body>
</html>


Edição feita por: eduardo_, 14/10/2005, 16:53.


#2 Klaus

Klaus

    @ ubuntu jaunty

  • Ex-Admins
  • 7924 posts
  • Sexo:Masculino
  • Localidade:127.0.0.1

Posted 14/10/2005, 21:22

Bom, apesar da lógica ainda estar errada, segue o script sem erros de sintaxe:

<html>
<head>
<title>Números pares de 2 a 100</title>
<style type="text/css">

td {font: 80% verdana; text-align: center; color:blue}

</style>
</head>

<body>

<table border="1" bordercolor="green" cellpadding="2" cellspacing="0"></table>
<tr bgColor="#cccccc" borderColorDark="#fcfcfc" borderColorLight="#999999"></tr>

<script type="text/javascript">

for(i = 2;i <= 100;i++)
{
if(i % 2 == 0)
{
if(i % 20 == 0)
{
document.write('<td>' + i + '</td></tr>');
if(1 < 100)

document.write('<tr bgColor=\"#cccccc"\"borderColorDark=\"#fcfcfc\"borderColorLght="999999"');
}
}
}

</script>


</body>
</html>


PS: Faça um algoritmo antes de fazer uma implementação.
Klaus Paiva
Conheça também: Taperás




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq