Dernière mise à jour : le 26/02/2013 à 12h03.

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'a.sener'@'172.20.245.56' (using password: YES) in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 7

Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 8

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 12

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 13

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 17

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 27

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 30

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 31
Il y a actuellement visiteurs connectés !

banniere

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'a.sener'@'172.20.245.56' (using password: YES) in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 63

Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 64

DELTA

DELTA est un programme qui vous calcule les racines d'une équation du type ax²+bx+c.

Nom : DELTA
Version : 1.0
Taille : 377 octets
Auteur : Hakan Sener
Date de création : 25/09/2009
Langage de programmation : Ti-Basic
Captures d'écrans :

capture d'écran

capture d'écran

capture d'écran

capture d'écran

Telechargement : DELTA.8xp

Nombre de téléchargements :
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 81

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 83
0.
Dernier téléchargement :
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 81

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /mnt/113/sdb/d/b/a.sener/en_tete.php on line 83
0


Code source : DELTA
:ClrHome
:Input "ENTRER A:",A
:Input "ENTRER B:",B
:Input "ENTRER C:",C
:B²-4ACD
:Disp "","CALCUL DE DELTA:"
:Disp " DELTA =-4AC",D►Frac
:Pause 
:ClrHome
:If D<0
:	Disp "DELTA < 0, CETTE","EQUATION NA DONC","PAS DE RACINE..."
:If D=0:Then
:	Disp "DELTA = 0,IL Y A","DONC UNE RACINE:","","X = (B)/(2A)",B/(2A)
:End
:If D>0:Then
:	Disp "DELTA > 0,IL Y A","DONC 2 RACINES :"
:	Pause 
:	Disp "X=(B+√(D))/(2A)",(B+√(D))/(2A)►Frac,""
:	Disp "Y=(B-√(D))/(2A)",(B-√(D))/(2A)►Frac
:End