()
| 9 | } |
| 10 | // Function to display the product along with the values of x and y - |
| 11 | public void display() { |
| 12 | System.out.println("The value of x = " + x); |
| 13 | System.out.println("The value of y = " + y); |
| 14 | System.out.println("The product of x and y = " + x * y); |
| 15 | } |
| 16 | } |
| 17 | public class JavaClasses { |
| 18 | public static void main(String[] args) { |