method function, example
Example: what is a method example in java
public int addNum(int num1, int num2) {
total = num1 + num2;
System.out.println("Total: " + total);
}
public int addNum(int num1, int num2) {
total = num1 + num2;
System.out.println("Total: " + total);
}