Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #55.1K
~992 People Reached
Favorite Forums
Favorite Tags
3 Posted Topics
how does one dynamically declare an object to be of a certain type?
package JavaProject2; //import java.util.Scanner; public class Student1 { static int[][] arr = { { 1, 2, 3, }, { 4, 5, 6, }, }; public static void main(String args[][]) { for(int i=0;i < 3;i++) { for(int j=0;j<2;j++) { System.out.println(arr[j]); } } } } /* String y; String[][] NR={}; Scanner raw=new …
The End.
abhisek.verma