if use the method that declare return type ,need to declare variable for that return type code example
Example: how to create a function that returns in java
// a method for computing the area of the rectangle
public int getArea() {
return width * height;
}