Guest User

Untitled

a guest
Jun 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. int CalcImagen(int coef[], int x, int grado){
  2.     int i,img=0;
  3.     for(i=0;i<=grado;i++){
  4.         img+=((pow(x,i)) * (coef[i]));
  5.     }
  6.    
  7.     return img;
  8. }
Add Comment
Please, Sign In to add comment