//MY JAVA WORK BHARAT
class abc
{
public static void main(String[] arr)
{
int [][] y = new int [3][3];
int m=0;
for(int i=0;i<3;i++)
{
for(int j=0;j<3;j++)
{
y[i][j]=Integer.parseInt(arr[m++]);
}}
for(int i=0;i<3;i++)
{
for(int j=0;j<3;j++)
{
System.out.print(" " +y[i][j]);
}
System.out.print("\n");
}
}}
//MY JAVA WORK BHARAT
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment