Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Last active June 16, 2017 11:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Add Operation for the Countdown Math Game on the SSaurel's Channel
package com.ssaurel.countdowngame;
public class Add implements Operation {
@Override
public int eval(int x, int y) {
int r = x + y;
if (r <= x || r <= y) {
return 0;
} else {
return r;
}
}
@Override
public String symbol() {
return "+";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment