- Code: Select all
()
Prgm
Local c,r,u,i
Lbl deb
Dialog
Title "La loi d'Ohm"
Text "Choisissez votre calcul"
DropDown "Calcul",{"U=R*I","I=U/R","R=U/I","Quitter"},c
EndDlog
If c=1 Then
Dialog
Request "R",r
Request "I",i
EndDlog
expr(r)->r
expr(i)->i
r*i->u
Text string(r)&"*"&string(i)&"="&string(u)
Goto deb
ElseIf c=2 Then
Dialog
Request "U",u
Request "R",r
EndDlog
expr(r)->r
expr(u)->u
u/r->i
Text string(u)&"/"&string(r)&"="&string(i)
Goto deb
ElseIf c=4 Then
DispHome
Else
Dialog
Request "U",u
Request "I",i
EndDlog
expr(u)->u
expr(i)->i
u/i->r
Text string(u)&"/"&string(i)&"="&string(r)
Goto deb
EndIf
EndPrgm
comme ça tu vois tes 2 données
tu as des modifications qui permettent de revenir au début du programme avec une possibilité de quitter le programme