Bonsoir![]()
j'ai cette fonction mathématique : y= (4x²+3x)/(2x-7)
Par exemple, on pose x = 3
Je tente d'écrire
je ne suis pas sûr du programme correct , et je pense qu'il est trop long !!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 mov al,3 mul al mov bl,4 mul bl mov cl,al mov al,3 mov bl,3 mul bl add al,cl mov cl,al mov al,3 mov bl,2 mul bl sub al,7 mov bl,al mov ax,cl div bl
Partager