15 lines
224 B
Java
15 lines
224 B
Java
|
|
package encapsulationInheritancePolymorphism;
|
||
|
|
|
||
|
|
public class Main {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
Student student = new Student();
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
//...
|
||
|
|
|
||
|
|
student.setFaculty("FPM", "MO-22");
|
||
|
|
}
|
||
|
|
}
|