Guest User

Untitled

a guest
Jan 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class Pair {
  2. //OVERVIEW: A record type
  3. int coeff;
  4. int exp;
  5. Pair(int c, int n) { coeff = c; exp = n; }
  6. }
Add Comment
Please, Sign In to add comment