forked from PrajaktaSathe/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaClasses.java
More file actions
30 lines (25 loc) · 770 Bytes
/
JavaClasses.java
File metadata and controls
30 lines (25 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Program to demonstrate the use of classes and objects (basic) -
package classes;
class MyClass {
private int x, y;
// Function to set the values of x and y -
public void set(int m, int n) {
x = m;
y = n;
}
// Function to display the product along with the values of x and y -
public void display() {
System.out.println("The value of x = " + x);
System.out.println("The value of y = " + y);
System.out.println("The product of x and y = " + x * y);
}
}
public class JavaClasses {
public static void main(String[] args) {
// TODO Auto-generated method stub
// Object instantiation -
MyClass obj = new MyClass();
obj.set(15, 50);
obj.display();
}
}