My Name

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

// Program explaining class creation

public class MyName {


private String name;
private int age;

void insert(String name, int age) {


this.name = name;
this.age = age;
}

void show() {
System.out.println("My Name is " + this.name);
System.out.println("My Age is " + this.age);
}

public static void main(String[]args) {


MyName obj = new MyName ();
obj.insert("Zaida", 20);
obj.show();
}
}

You might also like