Calculatrice


<html> <head><title>Calculatrice</title> <script language="javascript"> <!--hide function init() { document.forms[0].txt.value=""; } function Ajouter(form,val) { form.txt.value +=val; } function Rslt(form) { form.txt.value=eval(form.txt.value); } function Effacer(form) { form.txt.value=" "; } //fin Hide --> </script> </head> <body bgcolor="Black" onLoad="init()"> <form> <center> <table border=7 bgcolor="#c0c0c0"> <tr> <th colspan="3"><input type="text" name="txt" value=""> </th> </tr> <tr> <th><input type="button" value=" 7 " onClick="Ajouter(this.form,'7')"> </th> <th><input type="button" value=" 8 " onClick="Ajouter(this.form,'8')"> </th> <th><input type="button" value=" 9 " onClick="Ajouter(this.form,'9')"> </th> </tr> <tr> <th><input type="button" value=" 4 " onClick="Ajouter(this.form,'4')"> </th> <th><input type="button" value=" 5 " onClick="Ajouter(this.form,'5')"> </th> <th><input type="button" value=" 6 " onClick="Ajouter(this.form,'6')"> </th> </tr> <tr> <th><input type="button" value=" 1 " onClick="Ajouter(this.form,'1')"> </th> <th><input type="button" value=" 2 " onClick="Ajouter(this.form,'2')"> </th> <th><input type="button" value=" 3 " onClick="Ajouter(this.form,'3')"> </th> </tr> <tr> <th><input type="button" value=" 0 " onClick="Ajouter(this.form,'0')"> </th> <th><input type="button" value=" c " onClick="Effacer(this.form)"> </th> <th><input type="button" value=" - " onClick="Ajouter(this.form,'-')"> </th> </tr> <tr> <th><input type="button" value=" + " onClick="Ajouter(this.form,'+')"> </th> <th><input type="button" value=" * " onClick="Ajouter(this.form,'*')"> </th> <th><input type="button" value=" / " onClick="Ajouter(this.form,'/')"> </th> </tr> <tr> <th colspan=3 ><input type="button" value=" = " onClick="Rslt(this.form)"> </th> </tr> </table> </center> </body> </html>