Bonjour tout le monde voila je dois programmer un algorithme à l'aide de flowcode mais je ne sais absolument pas utiliser ce logiciel, c'est pourquoi je sollicite votre aide.
L'algorithme :
Fonction numérique utilisée :Code:VARIABLES a EST_DU_TYPE NOMBRE b EST_DU_TYPE NOMBRE nbtrapezes EST_DU_TYPE NOMBRE pas EST_DU_TYPE NOMBRE i EST_DU_TYPE NOMBRE approxintegrale EST_DU_TYPE NOMBRE DEBUT_ALGORITHME LIRE a LIRE b LIRE nbtrapezes SI (nbtrapezes>0 ET b>a) ALORS DEBUT_SI approxintegrale PREND_LA_VALEUR 0 pas PREND_LA_VALEUR (b-a)/nbtrapezes POUR i ALLANT_DE 0 A nbtrapezes-1 DEBUT_POUR approxintegrale PREND_LA_VALEUR approxintegrale+pas/2*(F1(a+i*pas)+F1(a+(i+1)*pas)) FIN_POUR AFFICHER approxintegrale FIN_SI FIN_ALGORITHME
F1(x)=x*x
Merci d'avance
-----