Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Last active June 16, 2017 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/4e2008017a635952c5903ff881a9a78e to your computer and use it in GitHub Desktop.
Save ssaurel/4e2008017a635952c5903ff881a9a78e to your computer and use it in GitHub Desktop.
Subtract Operation for the Countdown Math Game on the SSaurel's Channel
package com.ssaurel.countdowngame;
public class Subtract implements Operation {
@Override
public int eval(int x, int y) {
if (x < y) {
return y - x;
} else {
return x - y;
}
}
@Override
public String symbol() {
return "-";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment