Bonjour
J'ai un petit probleme dans ma procédure Afficher un polynome
sachant que j'ai comme types :
lors de l'affichage il y a une erreur mais je n'arrive pas à trouver mon erreurCode:#define LMAX 20 typedef struct{ float coeff; int degre; }Monome; typedef struct{ int longueur; Monome T[LMAX]; }Polynome; void affpol(Polynome P) { int i; printf("IMPLEMENTATION TABLEAU X^6+1:\n"); printf("%6.1f*X^%6.1d",P.T[0].coeff,P.T[0].degre); for(i=1; i<P.longueur; i++){ if(P.T[i].coeff>=0){ printf("+%6.1f*X^%6.1d",P.T[i].coeff,P.T[i].degre); } } }
cordialement lolo
-----