Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 20, 2020 16:48
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 codecademydev/3857fd3b34d274e04a9c1ec18f509875 to your computer and use it in GitHub Desktop.
Save codecademydev/3857fd3b34d274e04a9c1ec18f509875 to your computer and use it in GitHub Desktop.
Codecademy export
public class Calculator() {
public Calculator(){
}
public int add(int a, int b){
return a + b;
}
public int subtract(int a, int b){
return a - b;
}
public int multiply(int a, int b){
return a * b;
}
public int divide(int a, int b){
return a / b;
}
public int modulo(int a, int b){
return a % b;
}
public static void main(String[] args){
Calculator myCalculator = new Calculator();
System.out.println(myCalculator.add(5, 7));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment