Partagez vos programmes scientifiques
Posted: 05 Oct 2014, 14:39
Partagez vos grands ou petits programmes scientifiques pour TI nspire.
News, programmes, tutoriaux, forum sur les calculatrices TI !
https://tiplanet.org/forum/
Define franklin(n,d)=
Prgm
Local vs,v,e,c1: 1→c1
Loop
Disp "Expér. Franklin"
Disp "Nb de gouttes=",n
Disp "Diamètre d=",d
vs:=n^(−1)
v:=vs/500
e:=v/π/(d/2)^2
Disp "Vs=",approx(vs)
Disp "V=",approx(v)
Disp "e=",approx(e)
Request "autre calcul ? 0/1",c1
If c1≠1
Exit
EndLoop
EndPrgm