Created
June 23, 2021 05:28
-
-
Save akashkumarcs19/51a9cd5680d958e628ff5e0655531c7a to your computer and use it in GitHub Desktop.
Non_primitive_dataarray_main
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
import java.util.Scanner; | |
public class StudentArrayMain { | |
public static void main(String[] args) { | |
StudentArray studentArray = new StudentArray(); | |
studentArray.insert("akash",1,1); | |
studentArray.traverse(); | |
studentArray.deleteindex(0); | |
studentArray.traverse(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment