Guest User

Untitled

a guest
Jan 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public int coeff (int x) {
  2. for (int i = 0; i < exps.size( ); i++)
  3. if (((Integer) exps.get(i)).intValue( ) == x)
  4. return ((Integer) coeffs.get(i)).intValue( );
  5. return 0;
  6. }
Add Comment
Please, Sign In to add comment