mardi 18 octobre 2011

Jang Javascript Cours Javascript L006 : Calculs

Jang Javascript Cours Javascript Learn Javascript L006 : Calculs




<html>

<head >
<title > Cours Javascript L006 : Calculs </title >

</head>

<body>


<script language="Javascript">

<!--

var lim1 = 17 ;
var lim2 = 5 ;



var yokk = lim1 + lim2 ;
document.writeln(" yokk : " , yokk); // yook g (wolof)i.e addition (français)



var wàññi = lim1 - lim2 ;
document.writeln(" wàññi : " , wàññi); //wàññi g (wolof) i.e soustraction (français)


var ful = lim1 * lim2 ;
document.writeln (" ful : " , ful) // ful b ou pul b (wolof ) i.e multiplication (français)


var séddale = lim1/lim2 ;
document.writeln (" séddale : " , séddale) ; // séddale b (wolof) i.e division (français)

// -->

</script>

</body>

</html>