Utilisateur:Sniff/Brouillon

Distance entre deux points modifier

PROGRAM:DISTANCE
: Input "A=?",A
: Input "B=?",B
: Input "C=?",C
: Input "D=?",D
: √((C-A)²+(D-B)²)->R
: Disp R

Formule de Héron modifier

PROGRAM:HERON
: Input "A=?",A
: Input "B=?",B
: Input "C=?",C
: (A+B+C)/2->P
: √(P(P-A)(P-B)(P-C))->R
: Disp R

Théorème de Pythagore - A ou B modifier

PROGRAM:PYTHAØAB
: Input "A=?",A
: Input "C=?",C
: √(C²-A²)->B : Disp B

Théorème de Pythagore - C modifier

PROGRAM:PYTHAØC
: Input "A=?",A
: Input "B=?",B
: √(A²+B²)->C : Disp C