University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Oblig4.java 240B

12345678910111213141516
  1. abstract class Oblig4 {
  2. // Required for TegnUt
  3. public int x[];
  4. public int y[];
  5. public int n;
  6. public int MAX_Y;
  7. public int MAX_X;
  8. NPunkter17 points;
  9. Oblig4(NPunkter17 points) {
  10. this.points = points;
  11. }
  12. abstract void solve();
  13. }