Petit bug Javascript

Fermé
gen - 10 nov. 2008 à 02:08
bg62 Messages postés 23671 Date d'inscription samedi 22 octobre 2005 Statut Modérateur Dernière intervention 21 janvier 2025 - 10 nov. 2008 à 12:15
Bonjour,
Je dois faire entrer a l'utilisateur 3 notes, les afficher dans un tableau, ainsi que calculer la note globale... voila tout fonctionne sauf, l'affichage de la note globale, quelqu'un peu m'aider je ne vois pas mon erreur, merci d'avance !

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<LINK HREF="Base.CSS" REL="stylesheet" TYPE="text/css">

<title>Tp2 IFT1144, numéro 2
</title>


</head>

<body>


<table border=0 cellspacing=0 cellpadding=10 cols=2 width="92%">
<tr>

<td width="1%">
<img border="0" src="UMlogo.gif" width="110" height="50" alt="UdeM"></a></td>
</td>

<td width="100%"><h1> ift1144, tp2 numéro 2 </h1>
</td>
</tr>

<tr>
 
</tr>

</table>


<table border=0 cellspacing=0 cellpadding=10 cols=4 width="100%">

<tr>
 
</tr>

<tr>

<td width="1%">

</td>

<td width="99%"><h2> Calcul de la note globale </h2>
</td>
</tr>
</table>

<script>

var tp = prompt("Entrez la note des travaux pratiques :","");
var intra = prompt("Entrez la note de l'intra :","");
var final = prompt("Entrez la note de l'examen final :","");
var global= (tp*(40/100)) + (intra*(20/100)) + (final*(40/100))
</script>


<body>



<table border="1" width="50%" align="center">
<tr>
<td align="center"> TP </td>
<td align="center"> INTRA </td>
<td align="center"> FINAL </td>
</tr>

<tr>
<td align="center"> <script>document.write("" + tp + "" );</script> </td>
<td align="center"> <script>document.write("" + intra + "" );</script> </td>
<td align="center"> <script>document.write("" + final + "" );</script> </td>
</tr>


<tr>
<td colspan="2"> La note globale est: </td>
<td align="center"> <script>document.write("" + globale + "" );</script> </td>
</tr>

</table>

<br>
<br><h3>Travail effectué par: Geneviève Hénault</h3>



</body>
</html>
A voir également:

1 réponse

bg62 Messages postés 23671 Date d'inscription samedi 22 octobre 2005 Statut Modérateur Dernière intervention 21 janvier 2025 2 392
10 nov. 2008 à 12:15
bonjour
ceci est un forum d'entraide ...
l'inscription y est libre, certes, mais inscrit c'est quand même plus sympa et ne demande que quelques minutes ...
alors par respect pour ceux qui essaient d'aider ici, il y a un effort à faire ...
merci
b g
0