Day-18: Understanding Return Datatypes in Java
Return Datatypes:
A return type specifies what kind of value a method gives back when it finishes running. If a method doesn't return anything, we use void.1). Returning an Integer
⛶public int add(i...