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 :
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
:ClrHome
:Input "ENTRER A:",A
:Input "ENTRER B:",B
:Input "ENTRER C:",C
:B²-4AC→D
:Disp "","CALCUL DE DELTA:"
:Disp " DELTA = B²-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