1.

Write a program in Java to create a simple package and class inside it​

Answer» SIMPLE EXAMPLE of java package1. //save as Simple.java.2. package mypack;3. public class Simple{4. public static VOID main(String args[]){5. System.out.println("WELCOME to package");


Discussion

No Comment Found