Skip to content

Instantly share code, notes, and snippets.

@kolmakovruslan
Last active January 19, 2017 11:34
Show Gist options
  • Select an option

  • Save kolmakovruslan/c07a5f6771f987f0534f890dcf93b34d to your computer and use it in GitHub Desktop.

Select an option

Save kolmakovruslan/c07a5f6771f987f0534f890dcf93b34d to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
Calculator calculator = new Calculator();
if (calculator.calc("2 + 2") != 4) throw new RuntimeException();
if (calculator.calc("2 - 2") != 0) throw new RuntimeException();
if (calculator.calc("2 * 2") != 4) throw new RuntimeException();
if (calculator.calc("2 / 2") != 1) throw new RuntimeException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment